summaryrefslogtreecommitdiff
path: root/kernel/mem.h
diff options
context:
space:
mode:
authorMichal Idziorek <m.i@gmx.at>2014-12-02 08:28:18 +0100
committerMichal Idziorek <m.i@gmx.at>2014-12-02 08:28:18 +0100
commitb4e8da9b6e43366eaa7198f349ce30421c1d7bf1 (patch)
treea0378243e934002e9b4a74fc8321ba46da1dbf38 /kernel/mem.h
parentde8c758de78cd7091f80b582cf706fc441f6ca72 (diff)
little cleanup
Diffstat (limited to 'kernel/mem.h')
-rw-r--r--kernel/mem.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/kernel/mem.h b/kernel/mem.h
index efc3ebe..521bc4a 100644
--- a/kernel/mem.h
+++ b/kernel/mem.h
@@ -1,6 +1,4 @@
-
-#include <stdint.h>
-void* pmmngr_alloc_block ();
-//void* pmmngr_alloc_blocks (uint32_t size);
-void pmmngr_free_block (void* p);
-void mem_init(uint16_t *memmap,uint16_t entries);
+#include "types.h"
+physical_address* pmmngr_alloc_block ();
+void pmmngr_free_block (physical_address* p);
+void mem_init(physical_address *memmap,int entries);