about summary refs log tree commit diff
path: root/src/thread/pthread_create.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* reorganize thread exit code, make pthread_exit call cancellation handlers (pt2)Rich Felker2011-02-131-13/+50
* initial check-in, version 0.5.0 v0.5.0Rich Felker2011-02-121-0/+189