remove a fixme comment
[musl] / src / thread /
2012-02-28 Rich Felkerfix pthread_cleanup_pop(1) crash in non-thread-capable...
2012-02-27 Rich Felkerwork around "signal loses thread pointer" issue with...
2012-02-10 Rich Felkersmall fix for new pthread cleanup stuff
2012-02-09 Rich Felkerreplace bad cancellation cleanup abi with a sane one
2012-01-22 Rich Felkerfix cancellation failure in single-threaded programs
2011-10-26 Rich Felkerreport sem value overflows in sem_post
2011-10-09 Rich Felkerfix typo in arm clone() asm
2011-10-03 Rich Felkerrecovering ownerdead robust mutex must reset recursive...
2011-10-03 Rich Felkersimplify robust mutex unlock code path
2011-10-03 Rich Felkerfix crash if pthread_mutex_unlock is called without...
2011-10-03 Rich Felkeruse count=0 instead of 1 for recursive mutex with only...
2011-10-03 Rich Felkersynchronize cond var destruction with exiting waits
2011-10-01 Rich Felkerfix failure-to-wake in rwlock unlock
2011-09-28 Rich Felkerfix excessive/insufficient wakes in __vm_unlock
2011-09-28 Rich Felkerimprove pshared barriers
2011-09-28 Rich Felkernext step making barrier self-sync'd destruction safe
2011-09-28 Rich Felkerbarrier destroy must also wait for threads in other...
2011-09-28 Rich Felkercorrectly handle the degenerate barrier in the pshared...
2011-09-27 Rich Felkerfix crash in pthread_cond_wait mutex-locked check
2011-09-27 Rich Felkerfix crash in pthread_testcancel if pthread_self has...
2011-09-27 Rich Felkerimprove/debloat mutex unlock error checking in pthread_...
2011-09-27 Rich Felkercheck mutex owner in pthread_cond_wait
2011-09-27 Rich Felkerfix pshared barrier wrong return value.
2011-09-27 Rich Felkerconvert the barrier pshared option back to 0/1 values...
2011-09-27 Rich Felkerprocess-shared barrier support, based on discussion...
2011-09-27 Rich Felkerfix incorrect allocation failure check in pthread_create
2011-09-26 Rich Felkeranother cond var fix: requeue count race condition
2011-09-26 Rich Felkerfix lost signals in cond vars
2011-09-26 Rich Felkerredo cond vars again, use sequence numbers
2011-09-26 Rich Felkerrevert previous change in cond var waiter move
2011-09-26 Rich Felkeroptimize cond waiter move using atomic swap instead...
2011-09-25 Rich Felkerfix logic for when wakeup is not desired on cond bcast
2011-09-25 Rich Felkernew futex-requeue-based pthread_cond_broadcast implemen...
2011-09-24 Rich Felkerfix ABA race in cond vars, improve them overall
2011-09-23 Rich Felkerfix deadlock in condition wait whenever there are multi...
2011-09-18 Rich Felkerinitial commit of the arm port
2011-09-18 Rich Felkeroverhaul clone syscall wrapping
2011-09-17 Rich Felkerdummy implementation of set_thread_area
2011-09-16 Rich Felkerfix more instances of old a_xchg (use new a_swap name)
2011-09-16 Rich Felkeruse a_swap rather than old name a_xchg
2011-09-13 Rich Felkerremove some stray trailing space characters
2011-09-11 Rich Felkerfix serious bug in pthread_join
2011-09-10 Rich Felkerfix pthread_join wait call: thread termination tid...
2011-09-05 Rich Felkerhandle pending cancellation when enabling async cancell...
2011-08-14 Rich Felkermacro for pthread_equal
2011-08-12 Rich Felkerimplement forkall
2011-08-12 Rich Felkerpthread and synccall cleanup, new __synccall_wait op
2011-08-07 Rich Felkercondition variable signal/bcast need not wake unless...
2011-08-07 Rich Felkersimplify unified timed wait code, drop support for...
2011-08-07 Rich Felkeradd fast path for normal mutexes back to pthread_mutex_lock
2011-08-07 Rich Felkerclose should not be cancellable after "failing" with...
2011-08-07 Rich Felkersimplify multi-threaded errno, eliminate useless functi...
2011-08-07 Rich Felkeruse weak aliases rather than function pointers to simpl...
2011-08-03 Rich Felkerfurther debloat cancellation handlers
2011-08-03 Rich Felkermissed detail in cancellation bloat fix
2011-08-03 Rich Felkerfix static linking dependency bloat with cancellation
2011-08-03 Rich Felkeroverhaul rwlocks to address several issues
2011-08-03 Rich Felkertimedwait: play it safe for now
2011-08-03 Rich Felkercorrectly handle old kernels without FUTEX_WAIT_BITSET
2011-08-03 Rich Felkerfix sem_timedwait bug introduced in timedwait unification
2011-08-03 Rich Felkerunify and overhaul timed futex waits
2011-08-03 Rich Felkeravoid accessing mutex memory after atomic unlock
2011-08-02 Rich Felkerfix breakage in cancellation due to signal functions...
2011-08-02 Rich Felkeroverhaul posix semaphores to fix destructability race
2011-07-31 Rich Felkerclean up pthread_sigmask/sigprocmask dependency order
2011-07-30 Rich Felkeradd proper fuxed-based locking for stdio
2011-07-30 Rich Felkerfix bug in synccall with no threads: lock was taken...
2011-07-30 Rich Felkernew attempt at making set*id() safe and robust
2011-06-26 Rich Felkerfix useless use of potentially-uninitialized mode varia...
2011-06-15 Rich Felkerrestore use of .type in asm, but use modern @function...
2011-06-14 Rich Felkerfix race condition in pthread_kill
2011-06-14 Rich Felkerrun dtors before taking the exit-lock in pthread exit
2011-06-14 Rich Felkerminor locking optimizations
2011-06-14 Rich Felkerremove all .size and .type directives for functions...
2011-05-30 Rich Felkerimplement pthread_[sg]etconcurrency.
2011-05-08 Rich Felkeroptimize out useless default-attribute object in pthrea...
2011-05-08 Rich Felkeroptimize compound-literal sigset_t's not to contain...
2011-05-08 Rich Felkeroverhaul implementation-internal signal protections
2011-05-07 Rich Felkerreduce some ridiculously large spin counts
2011-05-07 Rich Felkerremove debug code that was missed in barrier commit
2011-05-07 Rich Felkercompletely new barrier implementation, addressing major...
2011-04-22 Rich Felkerfix initial stack alignment in new threads on x86_64
2011-04-21 Rich Felkerfix minor bugs due to incorrect threaded-predicate...
2011-04-20 Rich Felkermove some more code out of pthread_create.c
2011-04-19 Rich Felkerfix uninitialized waiters field in semaphores
2011-04-19 Rich Felkerrecheck cancellation disabled flag after syscall return...
2011-04-17 Rich Felkerfix typo in x86_64 cancellable syscall asm
2011-04-17 Rich Felkerpthread_exit is not supposed to affect cancellability
2011-04-17 Rich Felkerfix pthread_exit from cancellation handler
2011-04-17 Rich Felkerclean up handling of thread/nothread mode, locking
2011-04-17 Rich Felkerdebloat: use __syscall instead of syscall where possible
2011-04-17 Rich Felkerfix bugs in cancellable syscall asm
2011-04-17 Rich Felkeroptimize cancellation enable/disable code
2011-04-17 Rich Felkerdon't use pthread_once when there is no danger in race
2011-04-17 Rich Felkerfix some minor issues in cancellation handling patch
2011-04-17 Rich Felkeroverhaul pthread cancellation
2011-04-14 Rich Felkerchange sem_trywait algorithm so it never has to call...
2011-04-14 Rich Felkercheap trick to further optimize locking normal mutexes
2011-04-14 Rich Felkeruse a separate signal from SIGCANCEL for SIGEV_THREAD...
2011-04-14 Rich Felkersimplify cancellation point handling
next