summaryrefslogtreecommitdiff
path: root/lib/pool_alloc.c
AgeCommit message (Expand)AuthorFilesLines
2024-01-22Imported Upstream version 3.2.7upstream/3.2.7upstreamTizenOpenSource1-3/+2
2022-02-16Imported Upstream version 3.2.3upstream/3.2.3DongHun Kwak1-3/+3
2022-02-16Imported Upstream version 3.2.0upstream/3.2.0DongHun Kwak1-3/+3
2008-11-09Fixed a bunch of "warn_unused_result" compiler warnings.Wayne Davison1-12/+21
2008-07-21Use PTR_ADD for the new instances of void-pointer arithmetic.Wayne Davison1-5/+5
2008-07-19Changed the POOL_QALIGN flag to POOL_NO_QALIGN, reversing the settingWayne Davison1-5/+14
2008-07-18Improved the alignment code and changed POOL_APPEND to POOL_PREPEND.Wayne Davison1-61/+83
2007-08-21In pool_free_old(), one code path was not clearing a "next" pointer,Wayne Davison1-0/+1
2007-08-21Fix pool_create() to honor the POOL_INTERN flag.Wayne Davison1-1/+1
2007-06-06Decided against the last change.Wayne Davison1-7/+1
2007-06-06Allow a NULL address to be passed to pool_free_old() to indicate thatWayne Davison1-1/+7
2007-05-29Added pool_free_old() and pool_boundary() functions to add a way toWayne Davison1-53/+103
2007-05-29Tweaked a variable and a label to make them less confusing.Wayne Davison1-6/+6
2007-05-29- Fixed a bug where a pool_free() on the most-recently allocated poolWayne Davison1-28/+34
2006-11-19Added "const" to appropriate char pointers.Wayne Davison1-3/+2
2006-10-13Changed strcpy() calls into strlcpy() calls, just to be extra safe.Wayne Davison1-1/+1
2005-11-14Twiddled some brace positions and removed a superfluous ';' in a macro.Wayne Davison1-43/+19
2005-01-20Use int64 instead of uint64.Wayne Davison1-5/+5
2004-04-09Missed one void-pointer-arithmetic case.Wayne Davison1-1/+1
2004-04-09AIX's cc was complaining about the void* arithmetic.Wayne Davison1-6/+10
2004-02-10Another attempt at measuring the minimum alignment for a system.Wayne Davison1-1/+6
2004-02-10Trying a different MINALIGN because of core dumps on the sparc-64Wayne Davison1-1/+1
2004-02-10Revert pool_alloc's use of bomb if pool == NULL.J.W. Schultz1-6/+1
2004-02-10If we call pool_alloc() on a NULL pool, bomb out with an error.Wayne Davison1-1/+6
2004-02-10Changed a while loop to a for loop.Wayne Davison1-5/+3
2004-02-10Added allocation pool code.J.W. Schultz1-0/+297