- ddd87b2 implement pthread_[sg]etconcurrency. by Rich Felker · 13 years ago
- 11c531e implement uselocale function (minimal) by Rich Felker · 13 years ago
- 9a59faa add useless, obsolescent function ulimit by Rich Felker · 13 years ago
- f48832e fix backwards posix_spawn file action order by Rich Felker · 13 years ago
- dd45edb add accidentally-omitted file needed for posix_spawn file actions by Rich Felker · 13 years ago
- a0ae0b0 add file actions support to posix_spawn by Rich Felker · 13 years ago
- d6c0c97 posix_spawn: honor POSIX_SPAWN_SETSIGDEF flag by Rich Felker · 13 years ago
- c97f0d9 initial implementation of posix_spawn by Rich Felker · 13 years ago
- 3a17f75 modernize coding style in sjlj asm by Rich Felker · 13 years ago
- 86339bc fix strncat and wcsncat (double null termination) by Rich Felker · 13 years ago
- e981362 fix wcsncpy writing past end of buffer by Rich Felker · 13 years ago
- 19892bf fix brk/sbrk behavior to match the real legacy functions by Rich Felker · 13 years ago
- c5025bf release notes for 0.7.10 by Rich Felker · 13 years ago
- 8628eff fix the last known rounding bug in floating point printing by Rich Felker · 13 years ago
- 15b77d5 eventfd syscall wrapper and read/write wrappers by Rich Felker · 13 years ago
- 11e4b92 optimize out useless default-attribute object in pthread_create by Rich Felker · 13 years ago
- 4c4e22d optimize compound-literal sigset_t's not to contain useless hurd bits by Rich Felker · 13 years ago
- 99b8a25 overhaul implementation-internal signal protections by Rich Felker · 13 years ago
- 77f15d1 reduce some ridiculously large spin counts by Rich Felker · 13 years ago
- 9dd6399 remove debug code that was missed in barrier commit by Rich Felker · 13 years ago
- f16a308 completely new barrier implementation, addressing major correctness issues by Rich Felker · 13 years ago
- 2029114 add SA_NOMASK alias for SA_NODEFER with _GNU_SOURCE by Rich Felker · 13 years ago
- 78c808b fix fclose return status logic, again by Rich Felker · 14 years ago
- bd67467 fix undefined call order in fclose, possible lost output depending on compiler by Rich Felker · 14 years ago
- a9be201 workaround for preprocessor bug in pcc by Rich Felker · 14 years ago
- d02c50d minor optimization in puts: use inline putc_unlocked macro for newline by Rich Felker · 14 years ago
- 1477a3b avoid crashing when nel==0 is passed to qsort by Rich Felker · 14 years ago
- def0af1 use compiler builtins for variadic macros when available by Rich Felker · 14 years ago
- e6bac87 correct variadic prototypes for execl* family by Rich Felker · 14 years ago
- 2226370 replace heap sort with smoothsort implementation by Valentin Ochs by Rich Felker · 14 years ago
- 4bb9b4f add word-sized ctz function to atomic.h by Rich Felker · 14 years ago
- b5b4121 function signature fix: add const qualifier to mempcpy src arg by Rich Felker · 14 years ago
- 32e2c46 typo in prototype for mempcpy by Rich Felker · 14 years ago
- d179807 prototype for mempcpy by Rich Felker · 14 years ago
- 3486365 fix bug in ipv6 parsing that prevented parsing a lone "::" by Rich Felker · 14 years ago
- 34d8197 ipv6 parsing code (formerly dummied-out) by Rich Felker · 14 years ago
- 5efc6af fix 2 eof-related bugs in scanf by Rich Felker · 14 years ago
- db9915e update release notes to new format, add more by Rich Felker · 14 years ago
- e6cc1d6 fix initial stack alignment in new threads on x86_64 by Rich Felker · 14 years ago
- cbb65af update release notes in prep for 0.7.9 release by Rich Felker · 14 years ago
- d878dce omit errno update path for syscalls that cannot fail by Rich Felker · 14 years ago
- 31f014e fix bogus return values for inet_pton by Rich Felker · 14 years ago
- 4b5f054 move wait.h macros out of bits. they do not vary. by Rich Felker · 14 years ago
- f492c95 include signal.h to avoid thorny __sigcontext/sigcontext issues by Rich Felker · 14 years ago
- 870cc67 fix minor bugs due to incorrect threaded-predicate semantics by Rich Felker · 14 years ago
- f9a6372 workaround bug in linux dup2 by Rich Felker · 14 years ago
- 10d7561 properly create new session/controlling terminal in forkpty by Rich Felker · 14 years ago
- 4921ce0 implement (nonstandard) forkpty by Rich Felker · 14 years ago
- f1ac8a2 disallow blank strings as service or host name by Rich Felker · 14 years ago
- d4b5d6e fix bugs in ipv4 parsing by Rich Felker · 14 years ago
- 29a15ad fix initgroups (uninitialized count passed to getgrouplist) by Rich Felker · 14 years ago
- 18bca57 shadow password fixes: empty fields should read as -1 not 0 by Rich Felker · 14 years ago
- b052f13 namespace fixes for sys/mman.h by Rich Felker · 14 years ago
- 53ab4e7 fix missing include in posix_madvise.c (compile error) by Rich Felker · 14 years ago
- 2357350 support posix_madvise (previous a stub) by Rich Felker · 14 years ago
- 1c76683 add syscall wrappers for posix_fadvise, posix_fallocate by Rich Felker · 14 years ago
- 145c053 block cancellation in wordexp, handle more errors by Rich Felker · 14 years ago
- f0fc95d avoid malloc of potentially-large string in wordexp by Rich Felker · 14 years ago
- a6054e3 move some more code out of pthread_create.c by Rich Felker · 14 years ago
- 4f24994 fix uninitialized waiters field in semaphores by Rich Felker · 14 years ago
- 43ee4df dns lookups: protect against cancellation and fix incorrect error codes by Rich Felker · 14 years ago
- 75a0be1 avoid fd leak if opendir is cancelled when calloc has failed by Rich Felker · 14 years ago
- df9e11b protect ftw and nftw against cancellation by Rich Felker · 14 years ago
- d2c604d protect syslog against cancellation by Rich Felker · 14 years ago
- be2e06d recheck cancellation disabled flag after syscall returns EINTR by Rich Felker · 14 years ago
- 61b56a8 remove bogus extra logic for close cancellability by Rich Felker · 14 years ago
- 1bc44a4 fix typo in x86_64 cancellable syscall asm by Rich Felker · 14 years ago
- e98bdca minimal realpath implementation using /proc by Rich Felker · 14 years ago
- 2afed79 pthread_exit is not supposed to affect cancellability by Rich Felker · 14 years ago
- 1ebde9c fix pthread_exit from cancellation handler by Rich Felker · 14 years ago
- 9080cc1 clean up handling of thread/nothread mode, locking by Rich Felker · 14 years ago
- eb0e8fa debloat: use __syscall instead of syscall where possible by Rich Felker · 14 years ago
- 09dae2b fix bugs in cancellable syscall asm by Rich Felker · 14 years ago
- ebf8244 optimize cancellation enable/disable code by Rich Felker · 14 years ago
- 02eff25 don't use pthread_once when there is no danger in race by Rich Felker · 14 years ago
- e746640 fix some minor issues in cancellation handling patch by Rich Felker · 14 years ago
- feee989 overhaul pthread cancellation by Rich Felker · 14 years ago
- 90f09a0 remove stupid debug code in wordexp by Rich Felker · 14 years ago
- d251c26 implement wordexp. first try, may be buggy. intended to be safe. by Rich Felker · 14 years ago
- 69cf09c avoid setting errno when checking for tty by Rich Felker · 14 years ago
- 088ae59 document some changes in the upcoming release by Rich Felker · 14 years ago
- a3aa89d fix O_SYNC definition, cleanup fcntl.h by Rich Felker · 14 years ago
- 0a84e72 fix FAPPEND typo on x86_64 (previously only fixed on i386) by Rich Felker · 14 years ago
- c2b18f3 fcntl.h: move macros that do not vary between archs out of bits by Rich Felker · 14 years ago
- ace9736 fix broken fcntl locks on x86_64 by Rich Felker · 14 years ago
- b172dc8 make tmpfile slightly more efficient (use unlink syscall instead of remove) by Rich Felker · 14 years ago
- 9b96220 fix typo in legacy FAPPEND definition by Rich Felker · 14 years ago
- 33a3f20 add useless type fd_mask. it's in the reserved namespace. by Rich Felker · 14 years ago
- e983aea change sem_trywait algorithm so it never has to call __wake by Rich Felker · 14 years ago
- ec2e50d cheap trick to further optimize locking normal mutexes by Rich Felker · 14 years ago
- 016a5dc use a separate signal from SIGCANCEL for SIGEV_THREAD timers by Rich Felker · 14 years ago
- 9beb633 simplify cancellation point handling by Rich Felker · 14 years ago
- 19c1830 simplify syslog, add vsyslog interface (nonstandard) by Rich Felker · 14 years ago
- a77411a remove useless SIGPIPE protection from syslog by Rich Felker · 14 years ago
- a444ee3 fix syslog (corrected SIGPIPE blocking, and using dgram instead of stream) by Rich Felker · 14 years ago
- 07e865c numerous fixes to sysv ipc by Rich Felker · 14 years ago
- b5b43b6 add syslog.h cruft for syslogd to use... by Rich Felker · 14 years ago
- b778a2b add profile for getmntent_r by Rich Felker · 14 years ago
- 55b123b add syscall wrapper for flock by Rich Felker · 14 years ago
- 6f0259a fix bug whereby getopt_long allowed mismatch in last char of option name by Rich Felker · 14 years ago