diff options
author | deischen <deischen@FreeBSD.org> | 2002-05-24 04:35:55 +0000 |
---|---|---|
committer | deischen <deischen@FreeBSD.org> | 2002-05-24 04:35:55 +0000 |
commit | 2db4b611ef2da1301c58ff0a432205bf4c3e054a (patch) | |
tree | 0760ba38d9cd5fa533e0b55ccfa690b0f8d56120 /include | |
parent | c0482d70a16b58bd551f1e82c27aa978e925a03d (diff) | |
download | FreeBSD-src-2db4b611ef2da1301c58ff0a432205bf4c3e054a.zip FreeBSD-src-2db4b611ef2da1301c58ff0a432205bf4c3e054a.tar.gz |
Reorder prototypes to be in alphabetical order.
Diffstat (limited to 'include')
-rw-r--r-- | include/pthread_np.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/pthread_np.h b/include/pthread_np.h index 9b0462e..b49bd37 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 |