about summary refs log tree commit diff
Commit message (Expand)AuthorAgeFilesLines
...
* 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 bug from syscall overhaul: extra __syscall_ret call for 0-arg syscallsRich Felker2011-03-281-1/+1
* fix broken spinlock due to miscompilationRich Felker2011-03-281-1/+1
* prototype for getpassRich Felker2011-03-281-0/+4
* 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-258-0/+57
* remove -Wno-pointer-sign example from dist/config.makRich Felker2011-03-251-1/+0
* 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-2414-13/+49
* 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
* honor namespace for i386 syscall.h, even though it's not a standard headerRich Felker2011-03-191-50/+50
* fix typo in x86_64 part of syscall overhaulRich Felker2011-03-191-1/+1
* syscall overhaul part two - unify public and internal syscall interfaceRich Felker2011-03-1926-316/+275
* remove comment cruft that got left behind in x86_64 syscall.sRich Felker2011-03-191-1/+0
* add some ioctl stuff to sys/mount.hRich Felker2011-03-191-0/+18
* overhaul syscall interfaceRich Felker2011-03-1911-749/+1577
* some linux headers useful from user apps.Rich Felker2011-03-183-0/+550
* various legacy and linux-specific stuffRich Felker2011-03-187-1/+122
* document changes for 0.7.1 v0.7.1Rich Felker2011-03-181-0/+9
* implement [v]swprintfRich Felker2011-03-184-3/+63
* 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-1710-10/+84
* 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-173-1/+15
* 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
* remove some old cruft from sys/types.hRich Felker2011-03-141-1/+0
* 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
* pthread.h needs clockid_tRich Felker2011-03-121-0/+1