diff options
author | jhb <jhb@FreeBSD.org> | 2000-11-10 01:51:55 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2000-11-10 01:51:55 +0000 |
commit | 43358c0a4bdc6c82b02848674aa7f8b8c31c65fc (patch) | |
tree | e3659246410435c02bdd66f98dc445f1dd6d7907 /share | |
parent | 2298b37bd4f3d1f6af3123426ec1fa0b3417644e (diff) | |
download | FreeBSD-src-43358c0a4bdc6c82b02848674aa7f8b8c31c65fc.zip FreeBSD-src-43358c0a4bdc6c82b02848674aa7f8b8c31c65fc.tar.gz |
Replace non-existent 'mtx_t' typedef'd type with 'struct mtx'.
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man9/sleep.9 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/man/man9/sleep.9 b/share/man/man9/sleep.9 index f371652..a52f4d5 100644 --- a/share/man/man9/sleep.9 +++ b/share/man/man9/sleep.9 @@ -43,7 +43,7 @@ .Ft int .Fn tsleep "void *ident" "int priority" "const char *wmesg" "int timo" .Ft int -.Fn msleep "void *ident" "mtx_t *mtx" "int priority" "const char *wmesg" "int timo" +.Fn msleep "void *ident" "struct mtx *mtx" "int priority" "const char *wmesg" "int timo" .Ft int .Fn asleep "void *ident" "int priority" "const char *wmesg" "int timo" .Ft int |