diff options
author | deischen <deischen@FreeBSD.org> | 2002-05-24 04:33:07 +0000 |
---|---|---|
committer | deischen <deischen@FreeBSD.org> | 2002-05-24 04:33:07 +0000 |
commit | c0482d70a16b58bd551f1e82c27aa978e925a03d (patch) | |
tree | ad17be9cc9b40d96ded3baf402da9d7fcfaca41c /include | |
parent | 9ba1f9fa381dcbfb861533fdda13f9f27da78f14 (diff) | |
download | FreeBSD-src-c0482d70a16b58bd551f1e82c27aa978e925a03d.zip FreeBSD-src-c0482d70a16b58bd551f1e82c27aa978e925a03d.tar.gz |
Add the prototypes for pthread_suspend_all_np and pthread_resume_all_np.
Diffstat (limited to 'include')
-rw-r--r-- | include/pthread_np.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/pthread_np.h b/include/pthread_np.h index 54effc7..9b0462e 100644 --- a/include/pthread_np.h +++ b/include/pthread_np.h @@ -45,8 +45,10 @@ typedef void (*pthread_switch_routine_t)(pthread_t, pthread_t); __BEGIN_DECLS int pthread_attr_setcreatesuspend_np(pthread_attr_t *); int pthread_multi_np(void); +int pthread_resume_all_np(void); int pthread_resume_np(pthread_t); 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); |