summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2011-04-22update release notes to new format, add morev0.7.9Rich Felker
2011-04-22fix initial stack alignment in new threads on x86_64Rich Felker
2011-04-21update release notes in prep for 0.7.9 releaseRich Felker
2011-04-21omit errno update path for syscalls that cannot failRich Felker
2011-04-21fix bogus return values for inet_ptonRich Felker
2011-04-21move wait.h macros out of bits. they do not vary.Rich Felker
2011-04-21include signal.h to avoid thorny __sigcontext/sigcontext issuesRich Felker
2011-04-20fix minor bugs due to incorrect threaded-predicate semanticsRich Felker
2011-04-20workaround bug in linux dup2Rich Felker
2011-04-20properly create new session/controlling terminal in forkptyRich Felker
2011-04-20implement (nonstandard) forkptyRich Felker
2011-04-20disallow blank strings as service or host nameRich Felker
2011-04-20fix bugs in ipv4 parsingRich Felker
2011-04-20fix initgroups (uninitialized count passed to getgrouplist)Rich Felker
2011-04-20shadow password fixes: empty fields should read as -1 not 0Rich Felker
2011-04-20namespace fixes for sys/mman.hRich Felker
2011-04-20fix missing include in posix_madvise.c (compile error)Rich Felker
2011-04-20support posix_madvise (previous a stub)Rich Felker
2011-04-20add syscall wrappers for posix_fadvise, posix_fallocateRich Felker
2011-04-19block cancellation in wordexp, handle more errorsRich Felker
2011-04-19avoid malloc of potentially-large string in wordexpRich Felker
2011-04-19move some more code out of pthread_create.cRich Felker
2011-04-19fix uninitialized waiters field in semaphoresRich Felker
2011-04-18dns lookups: protect against cancellation and fix incorrect error codesRich Felker
2011-04-18avoid fd leak if opendir is cancelled when calloc has failedRich Felker
2011-04-18protect ftw and nftw against cancellationRich Felker
2011-04-18protect syslog against cancellationRich Felker
2011-04-18recheck cancellation disabled flag after syscall returns EINTRRich Felker
2011-04-18remove bogus extra logic for close cancellabilityRich Felker
2011-04-17fix typo in x86_64 cancellable syscall asmRich Felker
2011-04-17minimal realpath implementation using /procRich Felker
2011-04-17pthread_exit is not supposed to affect cancellabilityRich Felker
2011-04-17fix pthread_exit from cancellation handlerRich Felker
2011-04-17clean up handling of thread/nothread mode, lockingRich Felker
2011-04-17debloat: use __syscall instead of syscall where possibleRich Felker
2011-04-17fix bugs in cancellable syscall asmRich Felker
2011-04-17optimize cancellation enable/disable codeRich Felker
2011-04-17don't use pthread_once when there is no danger in raceRich Felker
2011-04-17fix some minor issues in cancellation handling patchRich Felker
2011-04-17overhaul pthread cancellationRich Felker
2011-04-15remove stupid debug code in wordexpRich Felker
2011-04-15implement wordexp. first try, may be buggy. intended to be safe.Rich Felker
2011-04-15avoid setting errno when checking for ttyRich Felker
2011-04-14document some changes in the upcoming releaseRich Felker
2011-04-14fix O_SYNC definition, cleanup fcntl.hRich Felker
2011-04-14fix FAPPEND typo on x86_64 (previously only fixed on i386)Rich Felker
2011-04-14fcntl.h: move macros that do not vary between archs out of bitsRich Felker
2011-04-14fix broken fcntl locks on x86_64Rich Felker
2011-04-14make tmpfile slightly more efficient (use unlink syscall instead of remove)Rich Felker
2011-04-14fix typo in legacy FAPPEND definitionRich Felker