aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/include/kmalloc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/include/kmalloc.h')
-rw-r--r--src/kernel/include/kmalloc.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/kernel/include/kmalloc.h b/src/kernel/include/kmalloc.h
new file mode 100644
index 0000000..d4a9272
--- /dev/null
+++ b/src/kernel/include/kmalloc.h
@@ -0,0 +1,11 @@
+#pragma once
+
+#include <stdint.h>
+#include <stddef.h>
+
+// Kernel memory allocator : one slab allocator for shared memory
+// Thread-safe.
+
+void kmalloc_setup();
+
+/* vim: set ts=4 sw=4 tw=0 noet :*/