add more legacy functions: setlinebuf and setbuffer
[musl] / src / thread /
2011-04-03 Rich Felkerpthread_create need not set errno
2011-04-03 Rich Felkerblock all signals during rsyscall
2011-04-03 Rich Felkerfix race condition in rsyscall handler
2011-04-03 Rich Felkerdon't trust siginfo in rsyscall handler
2011-04-03 Rich Felkersimplify calling of timer signal handler
2011-04-03 Rich Felkersimplify pthread tsd key handling
2011-04-03 Rich Felkeromit pthread tsd dtor code if tsd is not used
2011-04-02 Rich Felkersimplify setting result on thread cancellation
2011-04-02 Rich Felkeruse bss instead of mmap for main thread's pthread threa...
2011-04-02 Rich Felkerfix misspelled PTHREAD_CANCELED constant
2011-04-01 Rich Felkeruse a_store to set cancel flag in pthread_cancel, to...
2011-03-31 Rich Felkersimplify pthread_key_delete
2011-03-31 Rich Felkergreatly simplify pthread_key_create (~20% size reduction)
2011-03-30 Rich Felkeravoid crash on stupid but allowable usage of pthread_mu...
2011-03-30 Rich Felkerstreamline mutex unlock to remove a useless branch...
2011-03-30 Rich Felkercheap special-case optimization for normal mutexes
2011-03-29 Rich Felkerrevert mutex "optimization" that turned out to be worse
2011-03-29 Rich Felkermajor improvements to cancellation handling
2011-03-29 Rich Felkerrevert some more spin optimizations that turned out...
2011-03-29 Rich Felkerfix broken spinlock due to miscompilation
2011-03-26 Rich Felkermatch glibc/lsb cancellation abi on i386
2011-03-25 Rich Felkerprepare pthread_spin_unlock for archs that need memory...
2011-03-25 Rich Felkeroptimize contended case for pthread_spin_trylock
2011-03-25 Rich Felkeroptimize spinlock spin
2011-03-24 Rich Felkeroverhaul cancellation to fix resource leaks and dangero...
2011-03-20 Rich Felkerglobal cleanup to use the new syscall interface
2011-03-20 Rich Felkerif returning errno value directly from a syscall, we...
2011-03-20 Rich Felkersyscall overhaul part two - unify public and internal...
2011-03-19 Rich Felkeroverhaul syscall interface
2011-03-18 Rich Felkerimplement robust mutexes
2011-03-17 Rich Felkeravoid function call to pthread_self in mutex unlock
2011-03-17 Rich Felkerunify lock and owner fields of mutex structure
2011-03-17 Rich Felkeroptimize contended normal mutex case; add int compare...
2011-03-16 Rich Felkersimplify logic, slightly optimize contended case for...
2011-03-16 Rich Felkercorrect error returns for error-checking mutexes
2011-03-16 Rich Felkercut out a syscall on thread creation in the case where...
2011-03-16 Rich Felkerdon't expose EAGAIN, etc. from timed futex wait to...
2011-03-13 Rich Felkerimplement flockfile api, rework stdio locking
2011-03-11 Rich Felkerimplement dummy pthread_attr_[gs]etschedparam functions
2011-03-11 Rich Felkerfix pthread_attr_* implementations to match corrected...
2011-03-11 Rich Felkerfix failure behavior of sem_open when sem does not...
2011-03-11 Rich Felkerfix some semaphore wait semantics (race condition deadl...
2011-03-11 Rich Felkerfix sem_open and sem_close to obey posix semantics
2011-03-10 Rich Felkeroptimize pthread termination in the non-detached case
2011-03-10 Rich Felkersecurity fix: check that cancel/rsyscall signal was...
2011-03-10 Rich Felkerfix error handling for pthread_sigmask
2011-03-10 Rich Felkeroptimize pthread initialization
2011-03-08 Rich Felkersimplify and optimize pthread_mutex_trylock
2011-03-08 Rich Felkerrwlock trylock functions were wrongly returning EAGAIN...
2011-03-08 Rich Felkerfix major breakage in pthread_once (it was always deadl...
2011-03-08 Rich Felkerfix and optimize non-default-type mutex behavior
2011-03-08 Rich Felkerimplement pthread_mutexattr_[gs]etpshared functions
2011-03-08 Rich Felkerdisallow cpu time clocks as condattr clock values
2011-03-07 Rich Felkerfix off-by-one error in sem_(timed)wait (using old...
2011-03-07 Rich Felkeruse the selected clock from the condattr for pthread_co...
2011-03-07 Rich Felkerimplement pthread_rwlockattr_* (essentially no-ops)
2011-03-07 Rich Felkerimplement pthread_condattr_* interfaces
2011-03-07 Rich Felkerreject invalid attribute settings
2011-03-07 Rich Felkerimplement barrier attribute functions (essentially...
2011-03-04 Rich Felkerenforce stack size min in pthread_attr_setstacksize
2011-03-04 Rich Felkerimplement POSIX semaphores
2011-03-03 Rich Felkeroptimize POSIX TSD for fast pthread_getspecific
2011-02-19 Rich Felkeruse rt_sigprocmask, not legacy sigprocmask, syscall...
2011-02-19 Rich Felkerrace condition fix: block all signals before decrementi...
2011-02-19 Rich Felkermake pthread_exit run dtors for last thread, wait to...
2011-02-19 Rich Felkeradd pthread_atfork interface
2011-02-17 Rich Felkerreorganize pthread data structures and move the definit...
2011-02-16 Rich Felkerpatch by njk, simplifies thread register initialization...
2011-02-16 Rich Felkerpatch from njk: make x86_64 __uniclone branchless.
2011-02-15 Nicholas J. KainPort musl to x86-64. One giant commit!
2011-02-15 Rich Felkerfinish unifying thread register handling in preparation...
2011-02-15 Rich Felkerbegin unifying clone/thread management interface in...
2011-02-15 Rich Felkermake pthread_create return EAGAIN on resource failure...
2011-02-14 Rich Felkerreorganize thread exit code, make pthread_exit call...
2011-02-14 Rich Felkerreorganize thread exit code, make pthread_exit call...
2011-02-12 Rich Felkerinitial check-in, version 0.5.0