about summary refs log tree commit diff
path: root/src/thread
Commit message (Expand)AuthorAgeFilesLines
* remove implementation-reserved bits when saving signal maskRich Felker2012-06-021-1/+11
* remove no-longer-needed unblocking of signals in pthread_createRich Felker2012-06-021-1/+0
* ensure pthread-internal signals are unblocked before threads are usedRich Felker2012-05-251-0/+1
* remove leftover cp_sp cruft from cancellation code, fix small bugRich Felker2012-05-251-3/+1
* fix bad opcode in arm syscall_cp_asmRich Felker2012-05-231-1/+1
* fix issue with longjmp out of signal handlers and cancellationRich Felker2012-05-234-52/+35
* simplify cancellation push/pop slightlyRich Felker2012-05-232-12/+9
* remove everything related to forkallRich Felker2012-05-222-76/+0
* update license of njk contributed code (x86_64 asm)Rich Felker2012-05-052-2/+2
* make pthread stacks non-executableRich Felker2012-05-041-1/+1
* overhaul SSP support to use a real canaryRich Felker2012-05-031-0/+1
* ditch the priority inheritance locks; use malloc's version of lockRich Felker2012-04-242-28/+8
* internal locks: new owner of contended lock must set waiters flagRich Felker2012-04-241-1/+1
* new internal locking primitive; drop spinlocksRich Felker2012-04-241-6/+27
* fix pthread_cleanup_pop(1) crash in non-thread-capable, static-linked programsRich Felker2012-02-282-2/+2
* work around "signal loses thread pointer" issue with "approach 2"Rich Felker2012-02-271-2/+3
* small fix for new pthread cleanup stuffRich Felker2012-02-092-1/+1
* replace bad cancellation cleanup abi with a sane oneRich Felker2012-02-093-62/+23
* fix cancellation failure in single-threaded programsRich Felker2012-01-221-1/+1
* report sem value overflows in sem_postRich Felker2011-10-261-0/+4
* fix typo in arm clone() asmRich Felker2011-10-091-1/+1
* recovering ownerdead robust mutex must reset recursive lock countRich Felker2011-10-031-0/+1
* simplify robust mutex unlock code pathRich Felker2011-10-031-4/+4
* fix crash if pthread_mutex_unlock is called without ever lockingRich Felker2011-10-031-1/+1
* use count=0 instead of 1 for recursive mutex with only one lock referenceRich Felker2011-10-032-4/+2
* synchronize cond var destruction with exiting waitsRich Felker2011-10-022-0/+11
* fix failure-to-wake in rwlock unlockRich Felker2011-10-011-1/+1
* fix excessive/insufficient wakes in __vm_unlockRich Felker2011-09-281-3/+3
* improve pshared barriersRich Felker2011-09-281-11/+13
* next step making barrier self-sync'd destruction safeRich Felker2011-09-282-6/+18
* barrier destroy must also wait for threads in other processes exiting barrierRich Felker2011-09-281-0/+2
* correctly handle the degenerate barrier in the pshared caseRich Felker2011-09-271-1/+1
* fix crash in pthread_cond_wait mutex-locked checkRich Felker2011-09-271-1/+1
* fix crash in pthread_testcancel if pthread_self has not been calledRich Felker2011-09-271-1/+1
* improve/debloat mutex unlock error checking in pthread_cond_waitRich Felker2011-09-271-3/+3
* check mutex owner in pthread_cond_waitRich Felker2011-09-271-0/+3
* fix pshared barrier wrong return value.Rich Felker2011-09-271-1/+1
* convert the barrier pshared option back to 0/1 values when getting itRich Felker2011-09-271-1/+1
* process-shared barrier support, based on discussion with bdonlanRich Felker2011-09-274-10/+76
* fix incorrect allocation failure check in pthread_createRich Felker2011-09-271-1/+1
* another cond var fix: requeue count race conditionRich Felker2011-09-262-15/+13
* fix lost signals in cond varsRich Felker2011-09-262-14/+16
* redo cond vars again, use sequence numbersRich Felker2011-09-263-45/+49
* revert previous change in cond var waiter moveRich Felker2011-09-251-2/+6
* optimize cond waiter move using atomic swap instead of cas loopRich Felker2011-09-251-6/+2
* fix logic for when wakeup is not desired on cond bcastRich Felker2011-09-251-3/+4
* new futex-requeue-based pthread_cond_broadcast implementationRich Felker2011-09-253-4/+63
* fix ABA race in cond vars, improve them overallRich Felker2011-09-233-11/+12
* fix deadlock in condition wait whenever there are multiple waitersRich Felker2011-09-223-5/+17
* initial commit of the arm portRich Felker2011-09-184-0/+78