aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc
diff options
context:
space:
mode:
Diffstat (limited to 'src/alloc')
-rw-r--r--src/alloc/info.txt7
-rw-r--r--src/alloc/mem_pool/info.txt12
-rw-r--r--src/alloc/system_alloc/info.txt12
3 files changed, 31 insertions, 0 deletions
diff --git a/src/alloc/info.txt b/src/alloc/info.txt
new file mode 100644
index 000000000..2430a4db4
--- /dev/null
+++ b/src/alloc/info.txt
@@ -0,0 +1,7 @@
+realname "Allocator"
+
+load_on auto
+
+<add>
+allocate.h
+</add>
diff --git a/src/alloc/mem_pool/info.txt b/src/alloc/mem_pool/info.txt
new file mode 100644
index 000000000..ec987a0e0
--- /dev/null
+++ b/src/alloc/mem_pool/info.txt
@@ -0,0 +1,12 @@
+realname "Memory Pool Allocator"
+
+load_on auto
+
+<requires>
+utils
+</requires>
+
+<add>
+mem_pool.cpp
+mem_pool.h
+</add>
diff --git a/src/alloc/system_alloc/info.txt b/src/alloc/system_alloc/info.txt
new file mode 100644
index 000000000..0e8de9ff7
--- /dev/null
+++ b/src/alloc/system_alloc/info.txt
@@ -0,0 +1,12 @@
+realname "Default (Malloc) Allocators"
+
+load_on auto
+
+<requires>
+utils
+</requires>
+
+<add>
+defalloc.cpp
+defalloc.h
+</add>