about summary refs log tree commit diff
path: root/src/thread/pthread_create.c
Commit message (Expand)AuthorAgeFilesLines
* ignore ENOSYS error from mprotect in pthread_create and dynamic linkerRich Felker2015-06-171-1/+2
* refactor stdio open file list handling, move it out of global libc structRich Felker2015-06-161-1/+2
* eliminate costly tricks to avoid TLS access for current locale stateRich Felker2015-05-161-6/+0
* fix stack protector crashes on x32 & powerpc due to misplaced TLS canaryRich Felker2015-05-061-1/+1
* make dlerror state and message thread-local and dynamically-allocatedRich Felker2015-04-181-0/+2
* remove remnants of support for running in no-thread-pointer modeRich Felker2015-04-131-2/+0
* apply vmlock wait to __unmapself in pthread_exitRich Felker2015-04-101-0/+4
* redesign and simplify vmlock systemRich Felker2015-04-101-4/+2
* optimize out setting up robust list with kernel when not neededRich Felker2015-04-101-0/+1
* process robust list in pthread_exit to fix detached thread use-after-unmapRich Felker2015-04-101-2/+27
* make pthread_exit responsible for disabling cancellationRich Felker2015-02-161-0/+2
* overhaul __synccall and fix AS-safety and other issues in set*idRich Felker2015-01-151-0/+3
* add C11 thread creation and related thread functionsRich Felker2014-09-071-4/+12
* use weak symbols for the POSIX functions that will be used by C threadsJens Gustedt2014-09-061-7/+14
* fix false ownership of stdio FILEs due to tid reuseRich Felker2014-08-231-0/+2
* fix use of uninitialized memory with application-provided thread stacksRich Felker2014-08-221-0/+2
* enable private futex for process-local robust mutexesRich Felker2014-08-161-0/+3
* work around constant folding bug 61144 in gcc 4.9.0 and 4.9.1Rich Felker2014-07-161-3/+3
* eliminate use of cached pid from thread structureRich Felker2014-07-051-1/+0
* add locale frameworkRich Felker2014-07-021-0/+7
* simplify errno implementationRich Felker2014-06-101-1/+0
* replace all remaining internal uses of pthread_self with __pthread_selfRich Felker2014-06-101-2/+2
* fix pointer type mismatch and misplacement of constRich Felker2014-03-241-2/+2
* always initialize thread pointer at program startRich Felker2014-03-241-2/+9
* omit CLONE_PARENT flag to clone in pthread_createRich Felker2013-09-161-1/+1
* use symbolic names for clone flags in pthread_createRich Felker2013-09-161-2/+5
* support configurable page size on mips, powerpc and microblazeSzabolcs Nagy2013-09-151-0/+1
* transition to using functions for internal signal blocking/restoringRich Felker2013-04-261-8/+5
* prevent code from running under a thread id which already gave ESRCHRich Felker2013-04-261-1/+7
* fix clobbering of signal mask when creating thread with sched attributesRich Felker2013-04-261-1/+1
* make last thread's pthread_exit give exit(0) a consistent stateRich Felker2013-04-261-3/+13
* use atomic decrement rather than cas in pthread_exit thread countRich Felker2013-04-261-4/+1
* add comments on some of the pthread_exit logicRich Felker2013-04-261-2/+15
* always block signals in pthread_exit before decrementing thread countRich Felker2013-04-261-2/+2
* fix type error in pthread_create, introduced with pthread_getattr_npRich Felker2013-04-061-1/+1
* implement pthread_getattr_npRich Felker2013-03-311-2/+8
* remove __SYSCALL_SSLEN arch macro in favor of using public _NSIGRich Felker2013-03-261-5/+5
* fix stale locks left behind when pthread_create failsRich Felker2013-02-011-3/+6
* if pthread_create fails, it must not attempt mmap if there is no mappingRich Felker2013-02-011-1/+1
* pthread stack treatment overhaul for application-provided stacks, etc.Rich Felker2013-02-011-17/+31
* add support for thread scheduling (POSIX TPS option)Rich Felker2012-11-111-0/+29
* clean up sloppy nested inclusion from pthread_impl.hRich Felker2012-11-081-0/+1
* add support for TLS variant I, presently needed for arm and mipsRich Felker2012-10-151-1/+1
* fix overlap of thread stacks with thread tls segmentsRich Felker2012-10-141-2/+1
* clean up and refactor program initializationRich Felker2012-10-071-1/+1
* support for TLS in dynamic-loaded (dlopen) modulesRich Felker2012-10-051-10/+8
* TLS (GNU/C11 thread-local storage) support for static-linked programsRich Felker2012-10-041-5/+18
* further use of _Noreturn, for non-plain-C functionsRich Felker2012-09-061-2/+2
* use restrict everywhere it's required by c99 and/or posix 2008Rich Felker2012-09-061-1/+1
* fix (hopefully) all hard-coded 8's for kernel sigset_t sizeRich Felker2012-08-091-2/+4