| Commit message (Expand) | Author | Age | Files | Lines |
| * | implement robust mutexes•••some of this code should be cleaned up, e.g. using macros for some of
the bit flags, masks, etc. nonetheless, the code is believed to be
working and correct at this point.
| Rich Felker | 2011-03-17 | 1 | -0/+1 |
| * | pthread.h needs clockid_t•••actually it gets this from time.h if _POSIX_C_SOURCE or any other
feature test macros are defined, but it breaks if they're not.
| Rich Felker | 2011-03-12 | 1 | -0/+1 |
| * | missing const in some pthread_attr_* prototypes | Rich Felker | 2011-03-11 | 1 | -8/+8 |
| * | add prototypes for pthread_condattr_* and pthread_rwlockattr_* | Rich Felker | 2011-03-07 | 1 | -0/+12 |
| * | add pthread_atfork interface•••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.
| Rich Felker | 2011-02-18 | 1 | -0/+2 |
| * | reorganize pthread data structures and move the definitions to alltypes.h•••this allows sys/types.h to provide the pthread types, as required by
POSIX. this design also facilitates forcing ABI-compatible sizes in
the arch-specific alltypes.h, while eliminating the need for
developers changing the internals of the pthread types to poke around
with arch-specific headers they may not be able to test.
| Rich Felker | 2011-02-17 | 1 | -45/+12 |
| * | add to pthread.h: pthread_mutex_timedlock and sched.h, time.h | Rich Felker | 2011-02-16 | 1 | -1/+3 |
| * | initial check-in, version 0.5.0 | Rich Felker | 2011-02-12 | 1 | -0/+216 |