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