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