summaryrefslogtreecommitdiffstats
path: root/talloc.c
Commit message (Collapse)AuthorAgeFilesLines
* talloc.c: Update to match current upstream ("likely" macro definitions)Uoti Urpala2008-12-271-2/+10
| | | | | | Use the current macro definitions for likely/unlikely from Samba. The old version lacked parentheses around the non-GCC alternative, but there are no uses where this would actually make a difference.
* Make talloc abort() instead of returning NULLUoti Urpala2008-04-231-9/+9
| | | | | | Replace (hopefully) all cases where normally successful allocations could return NULL with abort(). This should allow skipping most checks on allocation return values.
* Hardcode feature checks in talloc.cUoti Urpala2008-04-231-1/+27
| | | | | | Original talloc build system used autoconf to check for features, most of which were standard C headers. Assume those always exist. Always use a workaround for the one non-standard feature (strnlen).
* Add the talloc memory allocatorUoti Urpala2008-04-231-0/+1724
Copy talloc.c and talloc.h from Samba (last changed 2008-04-17 in commit 7b9a647ebbbe9ec9e1b82b42e3a8916396f91273).