summaryrefslogtreecommitdiff
path: root/include/pthread_np.h
diff options
context:
space:
mode:
authorDaniel Eischen <deischen@FreeBSD.org>2002-05-24 04:35:55 +0000
committerDaniel Eischen <deischen@FreeBSD.org>2002-05-24 04:35:55 +0000
commit04249148fb69b4a2aa693e3ea0c747a5be3dc20f (patch)
tree0760ba38d9cd5fa533e0b55ccfa690b0f8d56120 /include/pthread_np.h
parent9de68a9f4cd4bbdbe730cdfe126276ee72a4e8e0 (diff)
Notes
Diffstat (limited to 'include/pthread_np.h')
-rw-r--r--include/pthread_np.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/pthread_np.h b/include/pthread_np.h
index 9b0462eb60ea..b49bd37388f3 100644
--- a/include/pthread_np.h
+++ b/include/pthread_np.h
@@ -44,18 +44,18 @@ typedef void (*pthread_switch_routine_t)(pthread_t, pthread_t);
*/
__BEGIN_DECLS
int pthread_attr_setcreatesuspend_np(pthread_attr_t *);
+int pthread_main_np(void);
int pthread_multi_np(void);
+int pthread_mutexattr_getkind_np(pthread_mutexattr_t);
+int pthread_mutexattr_setkind_np(pthread_mutexattr_t *, int);
int pthread_resume_all_np(void);
int pthread_resume_np(pthread_t);
+void pthread_set_name_np(pthread_t, const char *);
int pthread_single_np(void);
int pthread_suspend_all_np(void);
int pthread_suspend_np(pthread_t);
-int pthread_mutexattr_getkind_np(pthread_mutexattr_t);
-int pthread_mutexattr_setkind_np(pthread_mutexattr_t *, int);
-void pthread_set_name_np(pthread_t, const char *);
int pthread_switch_add_np(pthread_switch_routine_t);
int pthread_switch_delete_np(pthread_switch_routine_t);
-int pthread_main_np(void);
__END_DECLS
#endif