about summary refs log tree commit diff
path: root/src/thread/pthread_create.c
Commit message (Expand)AuthorAgeFilesLines
* fix pthread_create return value with PTHREAD_EXPLICIT_SCHEDRich Felker2018-08-161-0/+1
* make pthread_attr_init honor defaults set by pthread_setattr_default_npRich Felker2018-07-271-2/+2
* make linking of thread-start with explicit scheduling conditionalRich Felker2018-05-091-28/+7
* improve design of thread-start with explicit scheduling attributesRich Felker2018-05-091-21/+39
* improve joinable/detached thread state handlingRich Felker2018-05-051-9/+12
* improve pthread_exit synchronization with functions targeting tidRich Felker2018-05-051-11/+13
* use a dedicated futex object for pthread_join instead of tid fieldRich Felker2018-05-021-1/+2
* store pthread stack guard sizes for pthread_getattr_npWilliam Pitcock2018-02-031-1/+2
* consistently use the LOCK an UNLOCK macrosJens Gustedt2018-01-091-3/+3
* fix signal masking race in pthread_create with priority attributesRich Felker2017-09-061-2/+7
* add limited pthread_setattr_default_np API to set stack size defaultsRich Felker2016-11-081-4/+8
* fix pthread_create regression from stack/guard size simplificationRich Felker2016-11-081-1/+4
* simplify pthread_attr_t stack/guard size representationRich Felker2016-11-071-3/+3
* fix failure to obtain EOWNERDEAD status for process-shared robust mutexesRich Felker2016-06-271-1/+1
* 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