about summary refs log tree commit diff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
...
* rename __simple_malloc.c to lite_malloc.c - yes this affects behavior!Rich Felker2011-03-301-0/+0
* streamline mutex unlock to remove a useless branch, use a_store to unlockRich Felker2011-03-301-2/+6
* cheap special-case optimization for normal mutexesRich Felker2011-03-301-0/+4
* reorder timer initialization so that timer_create does not depend on freeRich Felker2011-03-292-9/+17
* revert mutex "optimization" that turned out to be worseRich Felker2011-03-291-1/+1
* implement POSIX timersRich Felker2011-03-295-0/+143
* major improvements to cancellation handlingRich Felker2011-03-294-8/+19
* some preliminaries for adding POSIX timersRich Felker2011-03-291-0/+4
* fix tempnam name generation, and a small bug in tmpnam on retry limitRich Felker2011-03-292-21/+20
* make tmpfile fail after exceeding max tries.Rich Felker2011-03-291-2/+6
* fix tmpnam to generate better names, not depend on non-ISO-C symbolsRich Felker2011-03-291-25/+17
* fix messed-up errno if remove fails for a non-EISDIR reasonRich Felker2011-03-291-2/+2
* learned something new - remove is supposed to support directories on POSIXRich Felker2011-03-291-1/+3
* revert some more spin optimizations that turned out to be pessimizationsRich Felker2011-03-283-4/+3
* fix broken spinlock due to miscompilationRich Felker2011-03-281-1/+1
* remove useless field in pthread struct (wasted a good bit of space)Rich Felker2011-03-281-1/+0
* fix getc - the classic error of trying to store EOF+0-255 in a char type..Rich Felker2011-03-281-3/+3
* major stdio overhaul, using readv/writev, plus other changesRich Felker2011-03-2837-281/+258
* match glibc/lsb cancellation abi on i386Rich Felker2011-03-256-0/+36
* fix all implicit conversion between signed/unsigned pointersRich Felker2011-03-2519-48/+44
* simplify and optimize FILE lock handlingRich Felker2011-03-245-14/+14
* prepare pthread_spin_unlock for archs that need memory barriersRich Felker2011-03-241-1/+2
* optimize contended case for pthread_spin_trylockRich Felker2011-03-241-1/+2
* optimize spinlock spinRich Felker2011-03-241-1/+1
* fix non-atomicity of putsRich Felker2011-03-241-1/+5
* overhaul cancellation to fix resource leaks and dangerous behavior with signalsRich Felker2011-03-2412-13/+43
* very cheap double-free checks in mallocRich Felker2011-03-231-0/+4
* global cleanup to use the new syscall interfaceRich Felker2011-03-20160-238/+180
* if returning errno value directly from a syscall, we need to negate it.Rich Felker2011-03-193-3/+3
* syscall overhaul part two - unify public and internal syscall interfaceRich Felker2011-03-1919-31/+53
* remove comment cruft that got left behind in x86_64 syscall.sRich Felker2011-03-191-1/+0
* overhaul syscall interfaceRich Felker2011-03-196-13/+67
* various legacy and linux-specific stuffRich Felker2011-03-181-0/+5
* implement [v]swprintfRich Felker2011-03-183-1/+61
* implement wprintf family of functionsRich Felker2011-03-174-0/+387
* fix broken wmemchr (unbounded search)Rich Felker2011-03-171-1/+1
* implement robust mutexesRich Felker2011-03-179-10/+83
* avoid function call to pthread_self in mutex unlockRich Felker2011-03-171-1/+1
* reorder mutex struct fields to make room for pointers (upcoming robust mutexes)Rich Felker2011-03-171-1/+3
* unify lock and owner fields of mutex structureRich Felker2011-03-174-8/+6
* optimize contended normal mutex case; add int compare-and-swap atomicRich Felker2011-03-171-1/+1
* simplify logic, slightly optimize contended case for non-default mutex typesRich Felker2011-03-161-4/+2
* correct error returns for error-checking mutexesRich Felker2011-03-162-2/+6
* cut out a syscall on thread creation in the case where guard size is 0Rich Felker2011-03-161-1/+1
* don't expose EAGAIN, etc. from timed futex wait to callerRich Felker2011-03-161-1/+4
* optimize file locking: avoid cache-polluting writes to global storageRich Felker2011-03-162-3/+5
* partially-written draft of fmemopen, still in #if 0Rich Felker2011-03-141-3/+48
* misplaced & in times() made it fail to work, and clobber the stackRich Felker2011-03-121-1/+1
* implement flockfile api, rework stdio lockingRich Felker2011-03-129-15/+66
* implement dummy pthread_attr_[gs]etschedparam functionsRich Felker2011-03-112-0/+14