summaryrefslogtreecommitdiff
path: root/src/thread/pthread_create.c
AgeCommit message (Expand)AuthorFilesLines
2011-08-12pthread and synccall cleanup, new __synccall_wait opRich Felker1-5/+1
2011-08-03further debloat cancellation handlersRich Felker1-0/+13
2011-08-03missed detail in cancellation bloat fixRich Felker1-1/+1
2011-08-03fix static linking dependency bloat with cancellationRich Felker1-6/+1
2011-07-30add proper fuxed-based locking for stdioRich Felker1-0/+16
2011-07-29new attempt at making set*id() safe and robustRich Felker1-4/+4
2011-06-14fix race condition in pthread_killRich Felker1-0/+2
2011-06-14run dtors before taking the exit-lock in pthread exitRich Felker1-2/+2
2011-06-14minor locking optimizationsRich Felker1-1/+1
2011-05-07optimize out useless default-attribute object in pthread_createRich Felker1-7/+7
2011-05-07optimize compound-literal sigset_t's not to contain useless hurd bitsRich Felker1-2/+2
2011-05-07overhaul implementation-internal signal protectionsRich Felker1-12/+4
2011-04-19move some more code out of pthread_create.cRich Felker1-6/+2
2011-04-17pthread_exit is not supposed to affect cancellabilityRich Felker1-2/+0
2011-04-17fix pthread_exit from cancellation handlerRich Felker1-5/+5
2011-04-17clean up handling of thread/nothread mode, lockingRich Felker1-14/+8
2011-04-17overhaul pthread cancellationRich Felker1-35/+13
2011-04-14use a separate signal from SIGCANCEL for SIGEV_THREAD timersRich Felker1-2/+0
2011-04-13simplify cancellation point handlingRich Felker1-13/+2
2011-04-06consistency: change all remaining syscalls to use SYS_ rather than __NR_ prefixRich Felker1-1/+1
2011-04-06move rsyscall out of pthread_create moduleRich Felker1-96/+9
2011-04-06pthread exit stuff: don't bother setting errno when we won't check it.Rich Felker1-2/+2
2011-04-06fix rsyscall handler: must not clobber errno from signal contextRich Felker1-2/+4
2011-04-05new framework to inhibit thread cancellation when neededRich Felker1-3/+13
2011-04-03pthread_create need not set errnoRich Felker1-1/+1
2011-04-03block all signals during rsyscallRich Felker1-4/+9
2011-04-03fix race condition in rsyscall handlerRich Felker1-1/+1
2011-04-03don't trust siginfo in rsyscall handlerRich Felker1-3/+2
2011-04-03simplify calling of timer signal handlerRich Felker1-7/+4
2011-04-03omit pthread tsd dtor code if tsd is not usedRich Felker1-13/+6
2011-04-01simplify setting result on thread cancellationRich Felker1-1/+1
2011-04-01fix misspelled PTHREAD_CANCELED constantRich Felker1-1/+1
2011-03-29major improvements to cancellation handlingRich Felker1-6/+12
2011-03-25match glibc/lsb cancellation abi on i386Rich Felker1-0/+5
2011-03-24overhaul cancellation to fix resource leaks and dangerous behavior with signalsRich Felker1-5/+11
2011-03-20global cleanup to use the new syscall interfaceRich Felker1-1/+1
2011-03-19syscall overhaul part two - unify public and internal syscall interfaceRich Felker1-3/+3
2011-03-19overhaul syscall interfaceRich Felker1-2/+2
2011-03-16cut out a syscall on thread creation in the case where guard size is 0Rich Felker1-1/+1
2011-03-12implement flockfile api, rework stdio lockingRich Felker1-0/+1
2011-03-10optimize pthread termination in the non-detached caseRich Felker1-4/+15
2011-03-10security fix: check that cancel/rsyscall signal was sent by the process itselfRich Felker1-0/+3
2011-02-19use rt_sigprocmask, not legacy sigprocmask, syscall in pthread exit codeRich Felker1-1/+1
2011-02-19race condition fix: block all signals before decrementing thread countRich Felker1-0/+2
2011-02-19make pthread_exit run dtors for last thread, wait to decrement thread countRich Felker1-3/+3
2011-02-17reorganize pthread data structures and move the definitions to alltypes.hRich Felker1-3/+3
2011-02-15begin unifying clone/thread management interface in preparation for portingRich Felker1-4/+2
2011-02-15make pthread_create return EAGAIN on resource failure, as required by POSIXRich Felker1-1/+1
2011-02-13reorganize thread exit code, make pthread_exit call cancellation handlers (pt2)Rich Felker1-13/+50
2011-02-12initial check-in, version 0.5.0v0.5.0Rich Felker1-0/+189