diff options
author | ru <ru@FreeBSD.org> | 2003-12-30 14:59:10 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2003-12-30 14:59:10 +0000 |
commit | 67877ecd4865c451edc02dfbbaca275826b26e76 (patch) | |
tree | e88a5620e17cf4d23e2dd7c56f1aabe24ff4b2c0 /lib/libpthread/man/pthread_mutexattr.3 | |
parent | 96159ed2347341c533d77f2f5e0685b70a4be2ed (diff) | |
download | FreeBSD-src-67877ecd4865c451edc02dfbbaca275826b26e76.zip FreeBSD-src-67877ecd4865c451edc02dfbbaca275826b26e76.tar.gz |
Pull some changes (mostly cosmetic) from libc_r manpages
in preparation for the merge.
Diffstat (limited to 'lib/libpthread/man/pthread_mutexattr.3')
-rw-r--r-- | lib/libpthread/man/pthread_mutexattr.3 | 30 |
1 files changed, 20 insertions, 10 deletions
diff --git a/lib/libpthread/man/pthread_mutexattr.3 b/lib/libpthread/man/pthread_mutexattr.3 index 286da28..f976026 100644 --- a/lib/libpthread/man/pthread_mutexattr.3 +++ b/lib/libpthread/man/pthread_mutexattr.3 @@ -89,23 +89,26 @@ to the location pointed to by the second function parameter. If successful, these functions return 0. Otherwise, an error number is returned to indicate the error. .Sh ERRORS +The .Fn pthread_mutexattr_init -will fail if: +function will fail if: .Bl -tag -width Er .It Bq Er ENOMEM Out of memory. .El .Pp +The .Fn pthread_mutexattr_destroy -will fail if: +function will fail if: .Bl -tag -width Er .It Bq Er EINVAL Invalid value for .Fa attr . .El .Pp +The .Fn pthread_mutexattr_setprioceiling -will fail if: +function will fail if: .Bl -tag -width Er .It Bq Er EINVAL Invalid value for @@ -114,16 +117,18 @@ or invalid value for .Fa prioceiling . .El .Pp +The .Fn pthread_mutexattr_getprioceiling -will fail if: +function will fail if: .Bl -tag -width Er .It Bq Er EINVAL Invalid value for .Fa attr . .El .Pp +The .Fn pthread_mutexattr_setprotocol -will fail if: +function will fail if: .Bl -tag -width Er .It Bq Er EINVAL Invalid value for @@ -132,16 +137,18 @@ or invalid value for .Fa protocol . .El .Pp +The .Fn pthread_mutexattr_getprotocol -will fail if: +function will fail if: .Bl -tag -width Er .It Bq Er EINVAL Invalid value for .Fa attr . .El .Pp +The .Fn pthread_mutexattr_settype -will fail if: +function will fail if: .Bl -tag -width Er .It Bq Er EINVAL Invalid value for @@ -150,8 +157,9 @@ or invalid value for .Fa type . .El .Pp +The .Fn pthread_mutexattr_gettype -will fail if: +function will fail if: .Bl -tag -width Er .It Bq Er EINVAL Invalid value for @@ -160,12 +168,14 @@ Invalid value for .Sh SEE ALSO .Xr pthread_mutex_init 3 .Sh STANDARDS +The .Fn pthread_mutexattr_init and .Fn pthread_mutexattr_destroy -conform to +functions conform to .St -p1003.1-96 .Pp +The .Fn pthread_mutexattr_setprioceiling , .Fn pthread_mutexattr_getprioceiling , .Fn pthread_mutexattr_setprotocol , @@ -173,5 +183,5 @@ conform to .Fn pthread_mutexattr_settype , and .Fn pthread_mutexattr_gettype -conform to +functions conform to .St -susv2 |