index
:
musl
master
rs-1.0
musl - an implementation of the standard library for Linux-based systems
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
thread
/
pthread_create.c
Age
Commit message (
Expand
)
Author
Lines
2014-09-07
add C11 thread creation and related thread functions
Rich Felker
-4
/
+12
2014-09-06
use weak symbols for the POSIX functions that will be used by C threads
Jens Gustedt
-7
/
+14
2014-08-23
fix false ownership of stdio FILEs due to tid reuse
Rich Felker
-0
/
+2
2014-08-22
fix use of uninitialized memory with application-provided thread stacks
Rich Felker
-0
/
+2
2014-08-16
enable private futex for process-local robust mutexes
Rich Felker
-0
/
+3
2014-07-16
work around constant folding bug 61144 in gcc 4.9.0 and 4.9.1
Rich Felker
-3
/
+3
2014-07-05
eliminate use of cached pid from thread structure
Rich Felker
-1
/
+0
2014-07-02
add locale framework
Rich Felker
-0
/
+7
2014-06-10
simplify errno implementation
Rich Felker
-1
/
+0
2014-06-10
replace all remaining internal uses of pthread_self with __pthread_self
Rich Felker
-2
/
+2
2014-03-24
fix pointer type mismatch and misplacement of const
Rich Felker
-2
/
+2
2014-03-24
always initialize thread pointer at program start
Rich Felker
-2
/
+9
2013-09-16
omit CLONE_PARENT flag to clone in pthread_create
Rich Felker
-1
/
+1
2013-09-16
use symbolic names for clone flags in pthread_create
Rich Felker
-2
/
+5
2013-09-15
support configurable page size on mips, powerpc and microblaze
Szabolcs Nagy
-0
/
+1
2013-04-26
transition to using functions for internal signal blocking/restoring
Rich Felker
-8
/
+5
2013-04-26
prevent code from running under a thread id which already gave ESRCH
Rich Felker
-1
/
+7
2013-04-26
fix clobbering of signal mask when creating thread with sched attributes
Rich Felker
-1
/
+1
2013-04-26
make last thread's pthread_exit give exit(0) a consistent state
Rich Felker
-3
/
+13
2013-04-26
use atomic decrement rather than cas in pthread_exit thread count
Rich Felker
-4
/
+1
2013-04-26
add comments on some of the pthread_exit logic
Rich Felker
-2
/
+15
2013-04-26
always block signals in pthread_exit before decrementing thread count
Rich Felker
-2
/
+2
2013-04-06
fix type error in pthread_create, introduced with pthread_getattr_np
Rich Felker
-1
/
+1
2013-03-31
implement pthread_getattr_np
Rich Felker
-2
/
+8
2013-03-26
remove __SYSCALL_SSLEN arch macro in favor of using public _NSIG
Rich Felker
-5
/
+5
2013-02-01
fix stale locks left behind when pthread_create fails
Rich Felker
-3
/
+6
2013-02-01
if pthread_create fails, it must not attempt mmap if there is no mapping
Rich Felker
-1
/
+1
2013-02-01
pthread stack treatment overhaul for application-provided stacks, etc.
Rich Felker
-17
/
+31
2012-11-11
add support for thread scheduling (POSIX TPS option)
Rich Felker
-0
/
+29
2012-11-08
clean up sloppy nested inclusion from pthread_impl.h
Rich Felker
-0
/
+1
2012-10-15
add support for TLS variant I, presently needed for arm and mips
Rich Felker
-1
/
+1
2012-10-14
fix overlap of thread stacks with thread tls segments
Rich Felker
-2
/
+1
2012-10-07
clean up and refactor program initialization
Rich Felker
-1
/
+1
2012-10-05
support for TLS in dynamic-loaded (dlopen) modules
Rich Felker
-10
/
+8
2012-10-04
TLS (GNU/C11 thread-local storage) support for static-linked programs
Rich Felker
-5
/
+18
2012-09-06
further use of _Noreturn, for non-plain-C functions
Rich Felker
-2
/
+2
2012-09-06
use restrict everywhere it's required by c99 and/or posix 2008
Rich Felker
-1
/
+1
2012-08-09
fix (hopefully) all hard-coded 8's for kernel sigset_t size
Rich Felker
-2
/
+4
2012-07-12
fix several locks that weren't updated right for new futex-based __lock
Rich Felker
-3
/
+3
2012-07-11
fix potential race condition in detached threads
Rich Felker
-2
/
+8
2012-06-09
add pthread_attr_setstack interface (and get)
Rich Felker
-9
/
+13
2012-06-02
remove no-longer-needed unblocking of signals in pthread_create
Rich Felker
-1
/
+0
2012-05-23
simplify cancellation push/pop slightly
Rich Felker
-2
/
+2
2012-05-04
make pthread stacks non-executable
Rich Felker
-1
/
+1
2012-05-03
overhaul SSP support to use a real canary
Rich Felker
-0
/
+1
2012-02-28
fix pthread_cleanup_pop(1) crash in non-thread-capable, static-linked programs
Rich Felker
-2
/
+0
2012-02-09
small fix for new pthread cleanup stuff
Rich Felker
-1
/
+0
2012-02-09
replace bad cancellation cleanup abi with a sane one
Rich Felker
-16
/
+14
2011-09-27
fix incorrect allocation failure check in pthread_create
Rich Felker
-1
/
+1
2011-09-18
overhaul clone syscall wrapping
Rich Felker
-5
/
+5
[next]