sync with the code. (pri_t)

This commit is contained in:
yamt 2007-03-01 14:24:25 +00:00
parent 71380e5a2f
commit 54c3330421
3 changed files with 10 additions and 10 deletions

View File

@ -1,4 +1,4 @@
.\" $NetBSD: lock.9,v 1.25 2007/02/17 08:43:10 wiz Exp $
.\" $NetBSD: lock.9,v 1.26 2007/03/01 14:24:25 yamt Exp $
.\"
.\" Copyright (c) 2000, 2007 The NetBSD Foundation, Inc.
.\" All rights reserved.
@ -31,7 +31,7 @@
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
.\" POSSIBILITY OF SUCH DAMAGE.
.\"
.Dd February 11, 2007
.Dd March 1, 2007
.Dt LOCK 9
.Os
.Sh NAME
@ -65,7 +65,7 @@
.Ft void
.Fn simple_lock_dump "void"
.Ft void
.Fn lockinit "struct lock *lock" "int prio" "const char *wmesg" \
.Fn lockinit "struct lock *lock" "pri_t prio" "const char *wmesg" \
"int timo" "int flags"
.Ft int
.Fn lockmgr "struct lock *lock" "u_int flags" "struct simplelock *slock"

View File

@ -1,4 +1,4 @@
.\" $NetBSD: ltsleep.9,v 1.9 2007/02/17 08:43:19 wiz Exp $
.\" $NetBSD: ltsleep.9,v 1.10 2007/03/01 14:24:25 yamt Exp $
.\"
.\" Copyright (c) 1996, 2002, 2007 The NetBSD Foundation, Inc.
.\" All rights reserved.
@ -34,7 +34,7 @@
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
.\" POSSIBILITY OF SUCH DAMAGE.
.\"
.Dd February 11, 2007
.Dd March 1, 2007
.Dt LTSLEEP 9
.Os
.Sh NAME
@ -45,9 +45,9 @@
.Sh SYNOPSIS
.In sys/proc.h
.Ft int
.Fn "ltsleep" "const void *ident" "int priority" "const char *wmesg" "int timo" "volatile struct simplelock *slock"
.Fn "ltsleep" "const void *ident" "pri_t priority" "const char *wmesg" "int timo" "volatile struct simplelock *slock"
.Ft int
.Fn "tsleep" "const void *ident" "int priority" "const char *wmesg" "int timo"
.Fn "tsleep" "const void *ident" "pri_t priority" "const char *wmesg" "int timo"
.Ft void
.Fn "wakeup" "const void *ident"
.Sh DESCRIPTION

View File

@ -1,4 +1,4 @@
.\" $NetBSD: workqueue_create.9,v 1.4 2006/12/23 07:30:26 yamt Exp $
.\" $NetBSD: workqueue_create.9,v 1.5 2007/03/01 14:24:25 yamt Exp $
.\"
.\" Copyright (c)2005 YAMAMOTO Takashi,
.\" All rights reserved.
@ -25,7 +25,7 @@
.\" SUCH DAMAGE.
.\"
.\" ------------------------------------------------------------
.Dd December 23, 2006
.Dd March 1, 2007
.Dt WORKQUEUE_CREATE 9
.Os
.\" ------------------------------------------------------------
@ -40,7 +40,7 @@
.Fn workqueue_create \
"struct workqueue **wqp" "const char *name" \
"void (*func)(struct work *, void *)" "void *arg" \
"int prio" "int ipl" "int flags"
"pri_t prio" "int ipl" "int flags"
.\" ------------------------------------------------------------
.Sh DESCRIPTION
.Fn workqueue_create