summaryrefslogtreecommitdiff
path: root/src/thread/pthread_create.c
AgeCommit message (Expand)AuthorLines
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-1/+1
2012-08-09fix (hopefully) all hard-coded 8's for kernel sigset_t sizeRich Felker-2/+4
2012-07-12fix several locks that weren't updated right for new futex-based __lockRich Felker-3/+3
2012-07-11fix potential race condition in detached threadsRich Felker-2/+8
2012-06-09add pthread_attr_setstack interface (and get)Rich Felker-9/+13
2012-06-02remove no-longer-needed unblocking of signals in pthread_createRich Felker-1/+0
2012-05-23simplify cancellation push/pop slightlyRich 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-02-28fix pthread_cleanup_pop(1) crash in non-thread-capable, static-linked programsRich Felker-2/+0
2012-02-09small fix for new pthread cleanup stuffRich Felker-1/+0
2012-02-09replace bad cancellation cleanup abi with a sane oneRich Felker-16/+14
2011-09-27fix incorrect allocation failure check in pthread_createRich Felker-1/+1
2011-09-18overhaul clone syscall wrappingRich Felker-5/+5
2011-08-12pthread and synccall cleanup, new __synccall_wait opRich Felker-5/+1
2011-08-03further debloat cancellation handlersRich Felker-0/+13
2011-08-03missed detail in cancellation bloat fixRich Felker-1/+1
2011-08-03fix static linking dependency bloat with cancellationRich Felker-6/+1
2011-07-30add proper fuxed-based locking for stdioRich Felker-0/+16
2011-07-29new attempt at making set*id() safe and robustRich Felker-4/+4
2011-06-14fix race condition in pthread_killRich Felker-0/+2
2011-06-14run dtors before taking the exit-lock in pthread exitRich Felker-2/+2
2011-06-14minor locking optimizationsRich Felker-1/+1
2011-05-07optimize out useless default-attribute object in pthread_createRich Felker-7/+7
2011-05-07optimize compound-literal sigset_t's not to contain useless hurd bitsRich Felker-2/+2
2011-05-07overhaul implementation-internal signal protectionsRich Felker-12/+4
2011-04-19move some more code out of pthread_create.cRich Felker-6/+2
2011-04-17pthread_exit is not supposed to affect cancellabilityRich Felker-2/+0
2011-04-17fix pthread_exit from cancellation handlerRich Felker-5/+5
2011-04-17clean up handling of thread/nothread mode, lockingRich Felker-14/+8
2011-04-17overhaul pthread cancellationRich Felker-35/+13
2011-04-14use a separate signal from SIGCANCEL for SIGEV_THREAD timersRich Felker-2/+0
2011-04-13simplify cancellation point handlingRich Felker-13/+2
2011-04-06consistency: change all remaining syscalls to use SYS_ rather than __NR_ prefixRich Felker-1/+1
2011-04-06move rsyscall out of pthread_create moduleRich Felker-96/+9
2011-04-06pthread exit stuff: don't bother setting errno when we won't check it.Rich Felker-2/+2
2011-04-06fix rsyscall handler: must not clobber errno from signal contextRich Felker-2/+4
2011-04-05new framework to inhibit thread cancellation when neededRich Felker-3/+13
2011-04-03pthread_create need not set errnoRich Felker-1/+1
2011-04-03block all signals during rsyscallRich Felker-4/+9
2011-04-03fix race condition in rsyscall handlerRich Felker-1/+1
2011-04-03don't trust siginfo in rsyscall handlerRich Felker-3/+2
2011-04-03simplify calling of timer signal handlerRich Felker-7/+4
2011-04-03omit pthread tsd dtor code if tsd is not usedRich Felker-13/+6
2011-04-01simplify setting result on thread cancellationRich Felker-1/+1
2011-04-01fix misspelled PTHREAD_CANCELED constantRich Felker-1/+1
2011-03-29major improvements to cancellation handlingRich Felker-6/+12
2011-03-25match glibc/lsb cancellation abi on i386Rich Felker-0/+5
2011-03-24overhaul cancellation to fix resource leaks and dangerous behavior with signalsRich Felker-5/+11