aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-11-08 20:35:54 +0000
committerlloyd <[email protected]>2008-11-08 20:35:54 +0000
commit3c77da389db0769cf07cddf7629a62e156fe577b (patch)
treec79a275c7df6ebbdff6d7277673e488bd9b80f49 /src/alloc
parent73ba6c48e349955f05e81d674172c9c737540280 (diff)
Split the last parts of the 'core' module
Add some missing info.txts
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>