summaryrefslogtreecommitdiff
path: root/src/thread
AgeCommit message (Expand)AuthorLines
2012-09-29microblaze portRich Felker-0/+65
2012-09-27fix arm clone syscall bug (no effect unless app uses clone)Rich Felker-2/+1
2012-09-15update mips cancellation-point syscall asm with 7-arg and r25 fixesRich Felker-2/+5
2012-09-09fix mips syscall_cp_asm code (saved register usage)Rich Felker-2/+2
2012-09-06further use of _Noreturn, for non-plain-C functionsRich Felker-2/+2
2012-09-06use restrict everywhere it's required by c99 and/or posix 2008Rich Felker-26/+26
2012-08-17fix extremely rare but dangerous race condition in robust mutexesRich Felker-20/+33
2012-08-09fix (hopefully) all hard-coded 8's for kernel sigset_t sizeRich Felker-7/+12
2012-07-24retry on cas failures in sem_trywaitRich Felker-2/+2
2012-07-14avoid blx instruction which does not exist on armv4t or armv4Rich Felker-1/+2
2012-07-12fix several locks that weren't updated right for new futex-based __lockRich Felker-7/+7
2012-07-12fix pthread_kill unlockingRich Felker-1/+1
2012-07-11fix potential race condition in detached threadsRich Felker-4/+10
2012-07-11mips clone: don't free stack space used to copy argRich Felker-1/+0
2012-07-11fix mips clone() on real linux kernelRich Felker-4/+7
2012-07-11fix clone() on mips (args were in wrong order)Rich Felker-3/+2
2012-07-11first attempt at making threads work on mipsRich Felker-0/+67
2012-07-11generic c version of __set_thread_area for archs where it worksRich Felker-1/+5
2012-06-09add pthread_attr_setstack interface (and get)Rich Felker-9/+37
2012-06-02remove implementation-reserved bits when saving signal maskRich Felker-1/+11
2012-06-02remove no-longer-needed unblocking of signals in pthread_createRich Felker-1/+0
2012-05-25ensure pthread-internal signals are unblocked before threads are usedRich Felker-0/+1
2012-05-25remove leftover cp_sp cruft from cancellation code, fix small bugRich Felker-3/+1
2012-05-23fix bad opcode in arm syscall_cp_asmRich Felker-1/+1
2012-05-23fix issue with longjmp out of signal handlers and cancellationRich Felker-52/+35
2012-05-23simplify cancellation push/pop slightlyRich Felker-12/+9
2012-05-22remove everything related to forkallRich Felker-76/+0
2012-05-05update license of njk contributed code (x86_64 asm)Rich Felker-2/+2
2012-05-04make pthread stacks non-executableRich Felker-1/+1
2012-05-03overhaul SSP support to use a real canaryRich Felker-0/+1
2012-04-24ditch the priority inheritance locks; use malloc's version of lockRich Felker-28/+8
2012-04-24internal locks: new owner of contended lock must set waiters flagRich Felker-1/+1
2012-04-24new internal locking primitive; drop spinlocksRich Felker-6/+27
2012-02-28fix pthread_cleanup_pop(1) crash in non-thread-capable, static-linked programsRich Felker-2/+2
2012-02-27work around "signal loses thread pointer" issue with "approach 2"Rich Felker-2/+3
2012-02-09small fix for new pthread cleanup stuffRich Felker-1/+1
2012-02-09replace bad cancellation cleanup abi with a sane oneRich Felker-62/+23
2012-01-22fix cancellation failure in single-threaded programsRich Felker-1/+1
2011-10-26report sem value overflows in sem_postRich Felker-0/+4
2011-10-09fix typo in arm clone() asmRich Felker-1/+1
2011-10-03recovering ownerdead robust mutex must reset recursive lock countRich Felker-0/+1
2011-10-03simplify robust mutex unlock code pathRich Felker-4/+4
2011-10-03fix crash if pthread_mutex_unlock is called without ever lockingRich Felker-1/+1
2011-10-03use count=0 instead of 1 for recursive mutex with only one lock referenceRich Felker-4/+2
2011-10-02synchronize cond var destruction with exiting waitsRich Felker-0/+11
2011-10-01fix failure-to-wake in rwlock unlockRich Felker-1/+1
2011-09-28fix excessive/insufficient wakes in __vm_unlockRich Felker-3/+3
2011-09-28improve pshared barriersRich Felker-11/+13
2011-09-28next step making barrier self-sync'd destruction safeRich Felker-6/+18
2011-09-28barrier destroy must also wait for threads in other processes exiting barrierRich Felker-0/+2