add pthread_atfork interface
authorRich Felker <dalias@aerifal.cx>
Sat, 19 Feb 2011 00:52:42 +0000 (19:52 -0500)
committerRich Felker <dalias@aerifal.cx>
Sat, 19 Feb 2011 00:52:42 +0000 (19:52 -0500)
note that this presently does not handle consistency of the libc's own
global state during forking. as per POSIX 2008, if the parent process
was threaded, the child process may only call async-signal-safe
functions until one of the exec-family functions is called, so the
current behavior is believed to be conformant even if non-ideal. it
may be improved at some later time.


No differences found