diff options
author | neal <neal> | 2008-05-21 14:09:10 +0000 |
---|---|---|
committer | neal <neal> | 2008-05-21 14:09:10 +0000 |
commit | 0fbc97caaa225d7318e79d6d0388ee74e8db3d89 (patch) | |
tree | 6a3d3bd152ba2456cb3f349aaa52523f146464bf /libpthread/include/pthread/pthread.h | |
parent | ff39d190d281d4b5d56c41c7594e7231d8a2045a (diff) |
2008-05-21 Neal H. Walfield <neal@gnu.org>
* sysdeps/l4/hurd/bits/pthread-np.h: New file.
* headers.m4: Don't link include/bits/pthread-np.h to
libpthread/sysdeps/l4/bits/pthread-np.h but to
libpthread/sysdeps/l4/hurd/bits/pthread-np.h.
* include/pthread/pthread.h: Include <bits/pthread-np.h>.
* sysdeps/l4/hurd/pt-setactivity-np.c (pthread_setactivity_np):
New file.
* Makefile.am (libpthread_a_SOURCES): Add pt-setactivity-np.c.
Diffstat (limited to 'libpthread/include/pthread/pthread.h')
-rw-r--r-- | libpthread/include/pthread/pthread.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libpthread/include/pthread/pthread.h b/libpthread/include/pthread/pthread.h index 2460acd..0437550 100644 --- a/libpthread/include/pthread/pthread.h +++ b/libpthread/include/pthread/pthread.h @@ -742,6 +742,11 @@ extern int pthread_setschedparam (pthread_t thread, int policy, /* Set thread THREAD's scheduling priority. */ extern int pthread_setschedprio (pthread_t thread, int prio); + + +/* Kernel-specific interfaces. */ + +#include <bits/pthread-np.h> __END_DECLS |