summaryrefslogtreecommitdiff
path: root/src/core/page_allocator.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/page_allocator.h')
-rw-r--r--src/core/page_allocator.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/core/page_allocator.h b/src/core/page_allocator.h
new file mode 100644
index 0000000..506cd8f
--- /dev/null
+++ b/src/core/page_allocator.h
@@ -0,0 +1,11 @@
+#ifndef SAND_PAGE_ALLOCATOR_H
+#define SAND_PAGE_ALLOCATOR_H
+
+// This module defines an allocator (i.e. an implementation of `SandAllocator`)
+// which allocates virtual memory pages.
+
+#include "allocator.h"
+
+SandAllocator *sand_get_page_allocator();
+
+#endif