consistently use the LOCK an UNLOCK macros
[oweals/musl.git] / src / thread / pthread_create.c
2018-01-09 Jens Gustedtconsistently use the LOCK an UNLOCK macros
2017-09-07 Rich Felkerfix signal masking race in pthread_create with priority...
2016-11-08 Rich Felkeradd limited pthread_setattr_default_np API to set stack...
2016-11-08 Rich Felkerfix pthread_create regression from stack/guard size...
2016-11-08 Rich Felkersimplify pthread_attr_t stack/guard size representation
2016-06-27 Rich Felkerfix failure to obtain EOWNERDEAD status for process...
2015-06-17 Rich Felkerignore ENOSYS error from mprotect in pthread_create...
2015-06-16 Rich Felkerrefactor stdio open file list handling, move it out...
2015-05-16 Rich Felkereliminate costly tricks to avoid TLS access for current...
2015-05-06 Rich Felkerfix stack protector crashes on x32 & powerpc due to...
2015-04-18 Rich Felkermake dlerror state and message thread-local and dynamic...
2015-04-13 Rich Felkerremove remnants of support for running in no-thread...
2015-04-10 Rich Felkerapply vmlock wait to __unmapself in pthread_exit
2015-04-10 Rich Felkerredesign and simplify vmlock system
2015-04-10 Rich Felkeroptimize out setting up robust list with kernel when...
2015-04-10 Rich Felkerprocess robust list in pthread_exit to fix detached...
2015-02-17 Rich Felkermake pthread_exit responsible for disabling cancellation
2015-01-16 Rich Felkeroverhaul __synccall and fix AS-safety and other issues...
2014-09-07 Rich Felkeradd C11 thread creation and related thread functions
2014-09-06 Jens Gustedtuse weak symbols for the POSIX functions that will...
2014-08-24 Rich Felkerfix false ownership of stdio FILEs due to tid reuse
2014-08-22 Rich Felkerfix use of uninitialized memory with application-provid...
2014-08-16 Rich Felkerenable private futex for process-local robust mutexes
2014-07-17 Rich Felkerwork around constant folding bug 61144 in gcc 4.9.0...
2014-07-06 Rich Felkereliminate use of cached pid from thread structure
2014-07-02 Rich Felkeradd locale framework
2014-06-10 Rich Felkersimplify errno implementation
2014-06-10 Rich Felkerreplace all remaining internal uses of pthread_self...
2014-03-24 Rich Felkerfix pointer type mismatch and misplacement of const
2014-03-24 Rich Felkeralways initialize thread pointer at program start
2013-09-16 Rich Felkeromit CLONE_PARENT flag to clone in pthread_create
2013-09-16 Rich Felkeruse symbolic names for clone flags in pthread_create
2013-09-15 Szabolcs Nagysupport configurable page size on mips, powerpc and...
2013-04-26 Rich Felkertransition to using functions for internal signal block...
2013-04-26 Rich Felkerprevent code from running under a thread id which alrea...
2013-04-26 Rich Felkerfix clobbering of signal mask when creating thread...
2013-04-26 Rich Felkermake last thread's pthread_exit give exit(0) a consiste...
2013-04-26 Rich Felkeruse atomic decrement rather than cas in pthread_exit...
2013-04-26 Rich Felkeradd comments on some of the pthread_exit logic
2013-04-26 Rich Felkeralways block signals in pthread_exit before decrementin...
2013-04-06 Rich Felkerfix type error in pthread_create, introduced with pthre...
2013-04-01 Rich Felkerimplement pthread_getattr_np
2013-03-27 Rich Felkerremove __SYSCALL_SSLEN arch macro in favor of using...
2013-02-02 Rich Felkerfix stale locks left behind when pthread_create fails
2013-02-02 Rich Felkerif pthread_create fails, it must not attempt mmap if...
2013-02-02 Rich Felkerpthread stack treatment overhaul for application-provid...
2012-11-14 Rich FelkerMerge remote-tracking branch 'ppc-port/ppc-squashed'
2012-11-11 Rich Felkeradd support for thread scheduling (POSIX TPS option)
2012-11-08 Rich Felkerclean up sloppy nested inclusion from pthread_impl.h
2012-10-15 Rich Felkeradd support for TLS variant I, presently needed for...
2012-10-15 Rich Felkerfix overlap of thread stacks with thread tls segments
2012-10-08 Rich Felkerclean up and refactor program initialization
2012-10-05 Rich Felkersupport for TLS in dynamic-loaded (dlopen) modules
2012-10-04 Rich FelkerTLS (GNU/C11 thread-local storage) support for static...
2012-09-07 Rich Felkerfurther use of _Noreturn, for non-plain-C functions
2012-09-07 Rich Felkeruse restrict everywhere it's required by c99 and/or...
2012-08-14 Rich FelkerMerge remote-tracking branch 'nsz/exp'
2012-08-10 Rich Felkerfix (hopefully) all hard-coded 8's for kernel sigset_t...
2012-07-12 Rich Felkerfix several locks that weren't updated right for new...
2012-07-12 Rich Felkerfix potential race condition in detached threads
2012-06-09 Rich Felkeradd pthread_attr_setstack interface (and get)
2012-06-02 Rich Felkerremove no-longer-needed unblocking of signals in pthrea...
2012-05-23 Rich Felkersimplify cancellation push/pop slightly
2012-05-05 Rich Felkermake pthread stacks non-executable
2012-05-04 Rich Felkeroverhaul SSP support to use a real canary
2012-02-28 Rich Felkerfix pthread_cleanup_pop(1) crash in non-thread-capable...
2012-02-10 Rich Felkersmall fix for new pthread cleanup stuff
2012-02-09 Rich Felkerreplace bad cancellation cleanup abi with a sane one
2011-09-27 Rich Felkerfix incorrect allocation failure check in pthread_create
2011-09-18 Rich Felkeroverhaul clone syscall wrapping
2011-08-12 Rich Felkerpthread and synccall cleanup, new __synccall_wait op
2011-08-03 Rich Felkerfurther debloat cancellation handlers
2011-08-03 Rich Felkermissed detail in cancellation bloat fix
2011-08-03 Rich Felkerfix static linking dependency bloat with cancellation
2011-07-30 Rich Felkeradd proper fuxed-based locking for stdio
2011-07-30 Rich Felkernew attempt at making set*id() safe and robust
2011-06-14 Rich Felkerfix race condition in pthread_kill
2011-06-14 Rich Felkerrun dtors before taking the exit-lock in pthread exit
2011-06-14 Rich Felkerminor locking optimizations
2011-05-08 Rich Felkeroptimize out useless default-attribute object in pthrea...
2011-05-08 Rich Felkeroptimize compound-literal sigset_t's not to contain...
2011-05-08 Rich Felkeroverhaul implementation-internal signal protections
2011-04-20 Rich Felkermove some more code out of pthread_create.c
2011-04-17 Rich Felkerpthread_exit is not supposed to affect cancellability
2011-04-17 Rich Felkerfix pthread_exit from cancellation handler
2011-04-17 Rich Felkerclean up handling of thread/nothread mode, locking
2011-04-17 Rich Felkeroverhaul pthread cancellation
2011-04-14 Rich Felkeruse a separate signal from SIGCANCEL for SIGEV_THREAD...
2011-04-14 Rich Felkersimplify cancellation point handling
2011-04-07 Rich Felkerconsistency: change all remaining syscalls to use SYS_...
2011-04-07 Rich Felkermove rsyscall out of pthread_create module
2011-04-06 Rich Felkerpthread exit stuff: don't bother setting errno when...
2011-04-06 Rich Felkerfix rsyscall handler: must not clobber errno from signa...
2011-04-05 Rich Felkernew framework to inhibit thread cancellation when needed
2011-04-03 Rich Felkerpthread_create need not set errno
2011-04-03 Rich Felkerblock all signals during rsyscall
2011-04-03 Rich Felkerfix race condition in rsyscall handler
2011-04-03 Rich Felkerdon't trust siginfo in rsyscall handler
2011-04-03 Rich Felkersimplify calling of timer signal handler
2011-04-03 Rich Felkeromit pthread tsd dtor code if tsd is not used
next