Corrections to ols config, moved ols out of repo

ols is now assumed to exist installed by the user
This commit is contained in:
2024-05-04 08:26:52 -04:00
parent 7162c5a14d
commit 4492ca3079
5 changed files with 7 additions and 14 deletions

View File

@ -1,9 +1,9 @@
/*
This is a pool allocator setup to grow incrementally via buckets.
Buckets are stored in singly-linked lists so that allocations aren't necessrily contigous.
Buckets are stored in singly-linked lists so that allocations aren't necessrily contiguous.
The pool is setup with the intention to only grab single entires from the bucket,
not for a contigous array of them.
not for a contiguous array of them.
Thus the free-list only tracks the last free entries thrown out by the user,
irrespective of the bucket the originated from.
This means if there is a heavy recyling of entires in a pool