diff options
author | hsu <hsu@FreeBSD.org> | 1996-11-11 09:21:19 +0000 |
---|---|---|
committer | hsu <hsu@FreeBSD.org> | 1996-11-11 09:21:19 +0000 |
commit | 16f3f7873ec0808944593adc1305289ee999ca8f (patch) | |
tree | 25872301c1cd74287cfe96d96713448048a42c10 /include | |
parent | 4b9077f2b95a885e88859c6fa959e48eb17df1f4 (diff) | |
download | FreeBSD-src-16f3f7873ec0808944593adc1305289ee999ca8f.zip FreeBSD-src-16f3f7873ec0808944593adc1305289ee999ca8f.tar.gz |
Prototype pthread_mutexattr_getkind_np() and pthread_mutexattr_setkind_np().
Diffstat (limited to 'include')
-rw-r--r-- | include/pthread_np.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/include/pthread_np.h b/include/pthread_np.h index 80e6a85..e4b5be1 100644 --- a/include/pthread_np.h +++ b/include/pthread_np.h @@ -37,11 +37,13 @@ * Non-POSIX thread function prototype definitions: */ __BEGIN_DECLS -int pthread_attr_setcreatesuspend_np __P((pthread_attr_t *)); -int pthread_multi_np __P((void)); -int pthread_resume_np __P((pthread_t)); -int pthread_single_np __P((void)); -int pthread_suspend_np __P((pthread_t)); +int pthread_attr_setcreatesuspend_np __P((pthread_attr_t *)); +int pthread_multi_np __P((void)); +int pthread_resume_np __P((pthread_t)); +int pthread_single_np __P((void)); +int pthread_suspend_np __P((pthread_t)); +int pthread_mutexattr_getkind_np __P((pthread_mutexattr_t attr)); +int pthread_mutexattr_setkind_np __P((pthread_mutexattr_t *attr, int kind)); __END_DECLS #endif |