diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2018-11-26 23:46:55 -0800 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2018-11-26 23:46:55 -0800 |
commit | 3abb513923adb1f5238a62dd7c64c433a08d9d62 (patch) | |
tree | 58ce04e6d82548ea8a93446bd64a06af01e0749a /bootstrap |
*: initial commit
This is a simple allocator derived from the chunker in the
sparkler rototiller particle system module.
It's useful for pooling allocations of varying size with a
lot of churn. It also gives a convenient way of discarding
all allocations through a reset mechanism obviating the need
for granular freeing, where applicable.
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bootstrap b/bootstrap new file mode 100755 index 0000000..99f6f06 --- /dev/null +++ b/bootstrap @@ -0,0 +1,5 @@ +#!/bin/sh + +aclocal \ +&& automake --gnu --add-missing \ +&& autoconf |