89 Commits (31e06075d5a71b53461638ee871bfb6163e20dd5)

Author SHA1 Message Date
Rich Felker 31e06075d5 simplify and optimize pthread_mutex_trylock 15 years ago
Rich Felker e5dd18319b rwlock trylock functions were wrongly returning EAGAIN instead of EBUSY 15 years ago
Rich Felker 7e6be42a77 fix major breakage in pthread_once (it was always deadlocking) 15 years ago
Rich Felker 4820f9268d fix and optimize non-default-type mutex behavior 15 years ago
Rich Felker 1d6b1f1592 implement pthread_mutexattr_[gs]etpshared functions 15 years ago
Rich Felker 9d5251f72b disallow cpu time clocks as condattr clock values 15 years ago
Rich Felker 9fe28f703d fix off-by-one error in sem_(timed)wait (using old sem value instead of new) 15 years ago
Rich Felker 5fd4a98165 use the selected clock from the condattr for pthread_cond_timedwait 15 years ago
Rich Felker cc2e0b45a6 implement pthread_rwlockattr_* (essentially no-ops) 15 years ago
Rich Felker b4d40e44e3 implement pthread_condattr_* interfaces 15 years ago
Rich Felker 63b06c0e90 reject invalid attribute settings 15 years ago
Rich Felker 951e764091 implement barrier attribute functions (essentially no-ops) 15 years ago
Rich Felker 8c967b9386 enforce stack size min in pthread_attr_setstacksize 15 years ago
Rich Felker 6fc5fdbdc7 implement POSIX semaphores 15 years ago
Rich Felker b480808a6a optimize POSIX TSD for fast pthread_getspecific 15 years ago
Rich Felker ebd7af6940 implement POSIX shared memory 15 years ago
Rich Felker 07e9d63b8f depends on settimeofday which needs _GNU_SOURCE feature test 15 years ago
Rich Felker eda8e9da76 implement futimens and utimensat 15 years ago
Rich Felker f2374ed852 implement fexecve 15 years ago
Rich Felker 015d33c507 cleanup utf-8 multibyte code, use visibility if possible 15 years ago
Rich Felker 2a195dd31c fix missing prototype for strsignal 15 years ago
Rich Felker 41d518360f various changes in preparation for dynamic linking support 15 years ago
Rich Felker b8ff2aaabb add implementation of memccpy function 15 years ago
Rich Felker 9f19b3ec8d fix backwards conditional in stpncpy 15 years ago
Rich Felker a6238c30d1 rewind must clear the error indicator in addition to seeking 15 years ago
Rich Felker 71e6be641f change errno to static linkage (improves PIC code generation) 15 years ago
Rich Felker cfcbea1e43 remove sample utf-8 code that's not part of the standard library 15 years ago
Rich Felker d89c9e8a63 use an accessor function for __libc data pointer when compiled as PIC 15 years ago
Rich Felker 4ee039f354 avoid referencing address of extern function from vdprintf 15 years ago
Rich Felker 3075f7e847 cleanup asprintf stuff 15 years ago
Rich Felker bdc9ed1565 fix %n specifier, again. this time it was storing the wrong value. 15 years ago
Rich Felker 26031da0f8 make malloc(0) return unique pointers rather than NULL 15 years ago
Rich Felker 598a0147cd fix simple_malloc malloc(0) behavior not to return non-unique pointers 15 years ago
Rich Felker a23baf586a fix simple_malloc size restrictions 15 years ago
Rich Felker 96f2197494 fix null pointer dereference introduced in last sigprocmask commit 15 years ago
Rich Felker eee150f39c make real symbols for the legacy (nonstandardized) utmp functions 15 years ago
Rich Felker 13e8459232 workaround gcc bug 46926 by providing a dumb sincos implementation 15 years ago
Rich Felker 98e02144da use rt_sigprocmask, not legacy sigprocmask, syscall in pthread exit code 15 years ago
Rich Felker 4b1244a0bf implement the remaining clock_* interfaces 15 years ago
Rich Felker 19eb13b9a4 race condition fix: block all signals before decrementing thread count 15 years ago
Rich Felker a49c119276 prevent sigprocmask/pthread_sigmask from blocking implementation signals 15 years ago
Rich Felker fb11b6b85e make pthread_exit run dtors for last thread, wait to decrement thread count 15 years ago
Rich Felker 69ecbd0f31 make mktemp match the historic behavior, and update functions that use it 15 years ago
Rich Felker 2e6239dd06 fix major bug created from copying mkdtemp logic 15 years ago
Rich Felker 095a5ae6f2 add syscall wrappers for inotify 15 years ago
Rich Felker cc2a8228fa cleanup cruft left from when kernel and user time_t disagreed 15 years ago
Rich Felker e9417fffb3 add pthread_atfork interface 15 years ago
Rich Felker 446b4207cc major improvements to temp file name generator 15 years ago
Rich Felker 3e9e30166f reformat mkstemp like mkdtemp 15 years ago
Rich Felker d5ca067c7b add portable lchown (trivial to support and a few ancient things want it..) 15 years ago