add stub versions of some missing optional pthread interfaces
authorRich Felker <dalias@aerifal.cx>
Sat, 17 Nov 2012 23:42:16 +0000 (18:42 -0500)
committerRich Felker <dalias@aerifal.cx>
Sat, 17 Nov 2012 23:42:16 +0000 (18:42 -0500)
commit5c6443ac42ba00ad3a0b4e98db4cc8f45596ca93
tree2ce1b3ac12ce35ad66baadd4cd7449003297b31e
parentbb9abdef48969671ee51f28379981a13c440d0d9
add stub versions of some missing optional pthread interfaces

priority inheritance is not yet supported, and priority protection
probably will not be supported ever unless there's serious demand for
it (it's a fairly heavy-weight feature).

per-thread cpu clocks would be nice to have, but to my knowledge linux
is still not capable of supporting them. glibc fakes them by using the
_process_ cpu-time clock and subtracting the thread creation time,
which gives seriously incorrect semantics (worse than not supporting
the feature at all), so until there's a way to do it right, it will
remain as a stub that always fails.
include/pthread.h
src/thread/pthread_attr_get.c
src/thread/pthread_getcpuclockid.c [new file with mode: 0644]
src/thread/pthread_mutex_getprioceiling.c [new file with mode: 0644]
src/thread/pthread_mutex_setprioceiling.c [new file with mode: 0644]
src/thread/pthread_mutexattr_setprotocol.c [new file with mode: 0644]