about summary refs log tree commit diff
path: root/src/thread/pthread_create.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* 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