From efd39a2f76587931fc40f9bb5fc6e647b29ee31e Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Fri, 2 Feb 2001 00:49:17 +0000 Subject: [PATCH] mtx_try_enter() returns an int, not void. --- share/man/man9/mutex.9 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/man/man9/mutex.9 b/share/man/man9/mutex.9 index dcba13509ffb..647dad17d661 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"