about summary refs log tree commit diff
path: root/src/thread/pthread_create.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* fix several locks that weren't updated right for new futex-based __lockRich Felker2012-07-121-3/+3
* fix potential race condition in detached threadsRich Felker2012-07-111-2/+8
* add pthread_attr_setstack interface (and get)Rich Felker2012-06-091-9/+13
* remove no-longer-needed unblocking of signals in pthread_createRich Felker2012-06-021-1/+0
* simplify cancellation push/pop slightlyRich Felker2012-05-231-2/+2
* make pthread stacks non-executableRich Felker2012-05-041-1/+1
* overhaul SSP support to use a real canaryRich Felker2012-05-031-0/+1
* fix pthread_cleanup_pop(1) crash in non-thread-capable, static-linked programsRich Felker2012-02-281-2/+0
* small fix for new pthread cleanup stuffRich Felker2012-02-091-1/+0
* replace bad cancellation cleanup abi with a sane oneRich Felker2012-02-091-16/+14
* 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