- b8688ff fix crash if pthread_mutex_unlock is called without ever locking by Rich Felker · 13 years ago
- 7fe58d3 use count=0 instead of 1 for recursive mutex with only one lock reference by Rich Felker · 13 years ago
- b3b00d1 sysconf for PTHREAD_KEYS_MAX by Rich Felker · 13 years ago
- 5a2e180 synchronize cond var destruction with exiting waits by Rich Felker · 13 years ago
- b85fec2 fix failure-to-wake in rwlock unlock by Rich Felker · 13 years ago
- 8b98c09 dlsym entry point for arm by Rich Felker · 13 years ago
- fcaf706 dynamic linker entry point for arm by Rich Felker · 13 years ago
- 4b87736 fix various bugs in path and error handling in execvp/fexecve by Rich Felker · 13 years ago
- 5f81468 don't crash on null strings in printf by Rich Felker · 13 years ago
- de543b0 fix excessive/insufficient wakes in __vm_unlock by Rich Felker · 13 years ago
- ede5ae7 make getmntent_r discard long lines when it returns error, not seek back by Rich Felker · 13 years ago
- 9cee930 improve pshared barriers by Rich Felker · 13 years ago
- 95b1479 next step making barrier self-sync'd destruction safe by Rich Felker · 13 years ago
- 8f4a115 barrier destroy must also wait for threads in other processes exiting barrier by Rich Felker · 13 years ago
- f0a8d60 stupid typo (caused by rather ugly spelling in POSIX..) in aio by Rich Felker · 13 years ago
- 067bdc2 correctly handle the degenerate barrier in the pshared case by Rich Felker · 13 years ago
- 3ac092b fix crash in pthread_cond_wait mutex-locked check by Rich Felker · 13 years ago
- 823813e fix crash in pthread_testcancel if pthread_self has not been called by Rich Felker · 13 years ago
- bc24453 improve/debloat mutex unlock error checking in pthread_cond_wait by Rich Felker · 13 years ago
- bfae1a8 check mutex owner in pthread_cond_wait by Rich Felker · 13 years ago
- d8dc1df fix pshared barrier wrong return value. by Rich Felker · 13 years ago
- 5e9e78e convert the barrier pshared option back to 0/1 values when getting it by Rich Felker · 13 years ago
- 7e76095 improve error handling in mntent stuff... by Rich Felker · 13 years ago
- f135ef3 fix missing va_end in prctl syscall wrapper by Rich Felker · 13 years ago
- aef84ca fix clobbering of errno in get(pw|gr)([ug]id|nam) by fclose by Rich Felker · 13 years ago
- 6016457 process-shared barrier support, based on discussion with bdonlan by Rich Felker · 13 years ago
- 3f39c9b fix incorrect allocation failure check in pthread_create by Rich Felker · 13 years ago
- 3bec53e another cond var fix: requeue count race condition by Rich Felker · 13 years ago
- 1fa0521 fix lost signals in cond vars by Rich Felker · 13 years ago
- fd142e5 cleanup various minor issues reported by nsz by Rich Felker · 13 years ago
- 729d636 redo cond vars again, use sequence numbers by Rich Felker · 13 years ago
- c11d1e6 revert previous change in cond var waiter move by Rich Felker · 13 years ago
- cf94016 optimize cond waiter move using atomic swap instead of cas loop by Rich Felker · 13 years ago
- 09ec0f3 fix logic for when wakeup is not desired on cond bcast by Rich Felker · 13 years ago
- cba4e1c new futex-requeue-based pthread_cond_broadcast implementation by Rich Felker · 13 years ago
- 97c5b5a fix ABA race in cond vars, improve them overall by Rich Felker · 13 years ago
- 4b153ac fix deadlock in condition wait whenever there are multiple waiters by Rich Felker · 13 years ago
- 0d4d94e protect against/handle cancellation reading shadow passwords by Rich Felker · 13 years ago
- 12d547b make dns lookups (and thus getaddrinfo) cancellable by Rich Felker · 13 years ago
- bf027ca use poll rather than select in dns lookups (also clock_gettime) by Rich Felker · 13 years ago
- ca52e34 avoid setting FILE lock count when not using flockfile by Rich Felker · 13 years ago
- 0b6eb2d update syscalls with off_t arguments to handle argument alignment, if needed by Rich Felker · 13 years ago
- 246e15c fix statvfs.c to match new fsid_t definition by Rich Felker · 13 years ago
- 114c80f fix the definition of struct statvfs to match lsb abi by Rich Felker · 13 years ago
- 089aeb0 fix incorrect long double parameters on arm (and other future ports) by Rich Felker · 13 years ago
- d960d4f initial commit of the arm port by Rich Felker · 13 years ago
- 4f4bf0a disable dynamic linking/loading code in static libc builds, for now by Rich Felker · 13 years ago
- 3f72cda overhaul clone syscall wrapping by Rich Felker · 13 years ago
- d5fd1fa dummy implementation of set_thread_area by Rich Felker · 13 years ago
- 471c606 fix assumptions that char is signed by Rich Felker · 13 years ago
- 2b71a4d fix more instances of old a_xchg (use new a_swap name) by Rich Felker · 13 years ago
- 813d378 use a_swap rather than old name a_xchg by Rich Felker · 13 years ago
- 5b91c22 fix generic sigsetjmp (unused anyway) pointer signedness error by Rich Felker · 13 years ago
- 144c951 fix idiotic const-correctness error in lio_listio by Rich Felker · 13 years ago
- d431d45 fix ptrace (maybe) by Rich Felker · 13 years ago
- 71f7a3c implement ptrace syscall wrapper (untested) by Rich Felker · 13 years ago
- a949257 remove incorrectly-made-visible internal dst offset variable by Rich Felker · 13 years ago
- 7c131a3 fix inconsistent signature for aio_error by Rich Felker · 13 years ago
- 4da289e fix return types for aio_read and aio_write again by Rich Felker · 13 years ago
- 13cd969 fix various errors in function signatures/prototypes found by nsz by Rich Felker · 13 years ago
- 0f1ef81 add missing posix_spawnattr_init/destroy functions by Rich Felker · 13 years ago
- 28af39f remove some stray trailing space characters by Rich Felker · 13 years ago
- fb80e04 implement gnu sigisemptyset by Rich Felker · 13 years ago
- a654017 add dummied strverscmp (obnoxious GNU function) by Rich Felker · 13 years ago
- 8fe5fa5 fix serious bug in pthread_join by Rich Felker · 13 years ago
- eb351a9 fix pthread_join wait call: thread termination tid futex is not private by Rich Felker · 13 years ago
- b4de6f9 implement POSIX asynchronous io by Rich Felker · 13 years ago
- 96cea94 fix incorrect overflow errors on strtoul, etc. by Rich Felker · 13 years ago
- 5989dde strptime: fix use of uninitialized dest field in converting integer by Rich Felker · 13 years ago
- d2e061a more fmemopen null termination fixes by Rich Felker · 13 years ago
- e72ee57 fix some fmemopen behaviors by Rich Felker · 13 years ago
- a7778da handle pending cancellation when enabling async cancellation by Rich Felker · 13 years ago
- 22e4542 fmemopen: fix eof handling, hopefully right this time by Rich Felker · 13 years ago
- f81279f fmemopen fixes by Rich Felker · 13 years ago
- 7ee3dcb memstreams: fix incorrect handling of file pos > current size by Rich Felker · 13 years ago
- c88f36f optimize seek function for memory streams by Rich Felker · 13 years ago
- 32d67e9 fix twos complement overflow bug in mem streams boundary check by Rich Felker · 13 years ago
- d4fa6f0 implement fmemopen by Rich Felker · 13 years ago
- 1e69376 fix some length calculations in memory streams by Rich Felker · 13 years ago
- 1461e02 implement open_wmemstream by Rich Felker · 13 years ago
- ad70ba7 fix RTLD_NEXT on x86_64 by Rich Felker · 13 years ago
- b158b32 implement open_memstream by Rich Felker · 13 years ago
- adb7093 fix missing prototypes/wrong signature for psiginfo, psignal by Rich Felker · 13 years ago
- 291666a bring back ___environ symbol (3 underscores) by Rich Felker · 13 years ago
- 1c8bead use new a_crash() asm to optimize double-free handler. by Rich Felker · 13 years ago
- df0b5a4 security hardening: ensure suid programs have valid stdin/out/err by Rich Felker · 13 years ago
- c0f3441 in pathconf, -1, not 0, means unsupported.. syncio presumably works, too. by Rich Felker · 13 years ago
- 3e082df fix bogus pathconf result for file size bits by Rich Felker · 13 years ago
- 47a8816 partially working strptime by Rich Felker · 13 years ago
- cf8506a ldso: move the suid/secure check code closer to env/auxv processing by Rich Felker · 13 years ago
- a045883 honor AT_SECURE aux vector flag by Rich Felker · 13 years ago
- 623753a RTLD_NEXT support by Rich Felker · 13 years ago
- 2719cc8 LD_PRELOAD support by Rich Felker · 13 years ago
- ce7c634 simplify and improve double-free check by Rich Felker · 13 years ago
- 9205e48 macro for pthread_equal by Rich Felker · 13 years ago
- ef9dd03 fix missing include in last commit by Rich Felker · 13 years ago
- ad57598 fix clock() function by Rich Felker · 13 years ago
- 4054a13 implement forkall by Rich Felker · 13 years ago
- 407d933 pthread and synccall cleanup, new __synccall_wait op by Rich Felker · 13 years ago
- b1a7102 more efficient signal blocking for timer threads by Rich Felker · 13 years ago