about summary refs log tree commit diff
path: root/src/thread
Commit message (Expand)AuthorAgeFilesLines
* fix extremely rare but dangerous race condition in robust mutexesRich Felker2012-08-173-20/+33
* fix (hopefully) all hard-coded 8's for kernel sigset_t sizeRich Felker2012-08-094-7/+12
* retry on cas failures in sem_trywaitRich Felker2012-07-241-2/+2
* avoid blx instruction which does not exist on armv4t or armv4Rich Felker2012-07-141-1/+2
* fix several locks that weren't updated right for new futex-based __lockRich Felker2012-07-123-7/+7
* fix pthread_kill unlockingRich Felker2012-07-121-1/+1
* fix potential race condition in detached threadsRich Felker2012-07-112-4/+10
* mips clone: don't free stack space used to copy argRich Felker2012-07-111-1/+0
* fix mips clone() on real linux kernelRich Felker2012-07-111-4/+7
* fix clone() on mips (args were in wrong order)Rich Felker2012-07-111-3/+2
* first attempt at making threads work on mipsRich Felker2012-07-113-0/+67
* generic c version of __set_thread_area for archs where it worksRich Felker2012-07-111-1/+5
* add pthread_attr_setstack interface (and get)Rich Felker2012-06-093-9/+37
* 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