diff options
author | jhb <jhb@FreeBSD.org> | 2001-02-02 00:49:17 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2001-02-02 00:49:17 +0000 |
commit | facc7916bece3c842622cc398afeacaa090ac2a8 (patch) | |
tree | 0a5b65fc64ee2e156e95e643735728eac88e675f /share | |
parent | 44f7e947e3aabd5935c7b8747e8b1fc61aefafb3 (diff) | |
download | FreeBSD-src-facc7916bece3c842622cc398afeacaa090ac2a8.zip FreeBSD-src-facc7916bece3c842622cc398afeacaa090ac2a8.tar.gz |
mtx_try_enter() returns an int, not void.
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man9/mutex.9 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/man/man9/mutex.9 b/share/man/man9/mutex.9 index dcba135..647dad1 100644 --- a/share/man/man9/mutex.9 +++ b/share/man/man9/mutex.9 @@ -47,7 +47,7 @@ .Fn mtx_init "struct mtx *mutex" "char *name" "flags" .Ft void .Fn mtx_enter "struct mtx *mutex" "int flags" -.Ft void +.Ft int .Fn mtx_try_enter "struct mtx *mutex" "int flags" .Ft void .Fn mtx_exit "struct mtx *mutex" "int flags" |