1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-17 15:27:36 +00:00

Add mtx_pool(9) to the SEE ALSO section.

Submitted by:	Garrett Rooney <rooneg@electricjellyfish.net>
This commit is contained in:
Dima Dorfman 2002-03-28 12:51:06 +00:00
parent aa43564a2c
commit a254506ee5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=93337
4 changed files with 4 additions and 0 deletions

View File

@ -195,6 +195,7 @@ Timeout expired.
.El
.Sh SEE ALSO
.Xr msleep 9 ,
.Xr mtx_pool 9 ,
.Xr mutex 9 ,
.Xr sema 9 ,
.Xr sx 9

View File

@ -465,6 +465,7 @@ This can be used to trim superfluous logging messages for debugging purposes.
.Sh SEE ALSO
.Xr condvar 9 ,
.Xr msleep 9 ,
.Xr mtx_pool 9 ,
.Xr sema 9 ,
.Xr sx 9
.Sh HISTORY

View File

@ -107,5 +107,6 @@ will return 0 if waiting on the semaphore failed; otherwise a non-zero value
will be returned to indicate success.
.Sh SEE ALSO
.Xr condvar 9 ,
.Xr mtx_pool 9 ,
.Xr mutex 9 ,
.Xr sx 9

View File

@ -146,6 +146,7 @@ A thread may not own a shared lock and an exclusive lock simultaneously;
attempting to do so will result in deadlock.
.Sh SEE ALSO
.Xr condvar 9 ,
.Xr mtx_pool 9 ,
.Xr mutex 9 ,
.Xr sema 9
.Sh BUGS