about summary refs log tree commit diff
Commit message (Expand)AuthorAgeFilesLines
...
* protect ftw and nftw against cancellationRich Felker2011-04-181-1/+6
* protect syslog against cancellationRich Felker2011-04-181-5/+19
* recheck cancellation disabled flag after syscall returns EINTRRich Felker2011-04-181-1/+1
* remove bogus extra logic for close cancellabilityRich Felker2011-04-181-3/+1
* fix typo in x86_64 cancellable syscall asmRich Felker2011-04-171-1/+1
* minimal realpath implementation using /procRich Felker2011-04-171-0/+43
* pthread_exit is not supposed to affect cancellabilityRich Felker2011-04-171-2/+0
* fix pthread_exit from cancellation handlerRich Felker2011-04-171-5/+5
* clean up handling of thread/nothread mode, lockingRich Felker2011-04-178-27/+16
* debloat: use __syscall instead of syscall where possibleRich Felker2011-04-177-8/+8
* fix bugs in cancellable syscall asmRich Felker2011-04-173-11/+12
* optimize cancellation enable/disable codeRich Felker2011-04-174-4/+11
* don't use pthread_once when there is no danger in raceRich Felker2011-04-171-2/+5
* fix some minor issues in cancellation handling patchRich Felker2011-04-173-11/+19
* overhaul pthread cancellationRich Felker2011-04-1750-227/+247
* remove stupid debug code in wordexpRich Felker2011-04-151-1/+0
* implement wordexp. first try, may be buggy. intended to be safe.Rich Felker2011-04-151-0/+128
* avoid setting errno when checking for ttyRich Felker2011-04-152-2/+2
* document some changes in the upcoming releaseRich Felker2011-04-141-1/+18
* fix O_SYNC definition, cleanup fcntl.hRich Felker2011-04-143-22/+18
* fix FAPPEND typo on x86_64 (previously only fixed on i386)Rich Felker2011-04-141-1/+1
* fcntl.h: move macros that do not vary between archs out of bitsRich Felker2011-04-143-48/+24
* fix broken fcntl locks on x86_64Rich Felker2011-04-141-3/+3
* make tmpfile slightly more efficient (use unlink syscall instead of remove)Rich Felker2011-04-141-1/+1
* fix typo in legacy FAPPEND definitionRich Felker2011-04-141-1/+1
* add useless type fd_mask. it's in the reserved namespace.Rich Felker2011-04-141-0/+2
* change sem_trywait algorithm so it never has to call __wakeRich Felker2011-04-141-3/+2
* cheap trick to further optimize locking normal mutexesRich Felker2011-04-142-2/+2
* use a separate signal from SIGCANCEL for SIGEV_THREAD timersRich Felker2011-04-146-11/+29
* simplify cancellation point handlingRich Felker2011-04-132-16/+5
* simplify syslog, add vsyslog interface (nonstandard)Rich Felker2011-04-131-31/+36
* remove useless SIGPIPE protection from syslogRich Felker2011-04-131-9/+0
* fix syslog (corrected SIGPIPE blocking, and using dgram instead of stream)Rich Felker2011-04-131-10/+8
* numerous fixes to sysv ipcRich Felker2011-04-1312-66/+96
* add syslog.h cruft for syslogd to use...Rich Felker2011-04-131-0/+45
* add profile for getmntent_rRich Felker2011-04-131-0/+1
* add syscall wrapper for flockRich Felker2011-04-131-0/+7
* fix bug whereby getopt_long allowed mismatch in last char of option nameRich Felker2011-04-131-1/+1
* fix typos on RLIM_NLIMITS, remove _GNU_SOURCE test for itRich Felker2011-04-131-3/+1
* fix and cleanup suseconds_t/timeval stuff (broken on 64-bit)Rich Felker2011-04-133-10/+2
* implement getgrouplist (for initgroups), formerly dummied-out v0.7.8Rich Felker2011-04-131-4/+16
* fix prototypes/signature for setgroups, etc.Rich Felker2011-04-133-2/+8
* fix incorrect GNU sighandler_t typedefRich Felker2011-04-131-1/+1
* implement memrchr (nonstandard) and optimize strrchr in terms of itRich Felker2011-04-133-4/+16
* add ptsname_r (nonstandard) and split ptsname (standard) to separate fileRich Felker2011-04-133-11/+17
* speed up threaded forkRich Felker2011-04-121-2/+1
* more changes for upcoming 0.7.8Rich Felker2011-04-121-1/+12
* optimize ntohl etc. in terms of bswap functionsRich Felker2011-04-124-20/+12
* move bswap functions to static inline in byteswap.hRich Felker2011-04-123-16/+25
* fix broken bswap_32Rich Felker2011-04-121-1/+1