Revert to previous. ras(9) uses 'struct proc'.

Pointed out by Gregory McGarry.
This commit is contained in:
rpaulo 2006-01-16 00:01:47 +00:00
parent 8f162b7ed8
commit 461bb7e2b5
1 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
.\" $NetBSD: ras.9,v 1.6 2005/12/20 19:53:15 rpaulo Exp $
.\" $NetBSD: ras.9,v 1.7 2006/01/16 00:01:47 rpaulo Exp $
.\"
.\" Copyright (c) 2002 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 December 20, 2005
.Dd August 12, 2002
.Dt RAS 9
.Os
.Sh NAME
@ -47,11 +47,11 @@
.In sys/proc.h
.In sys/ras.h
.Ft caddr_t
.Fn ras_lookup "struct lwp *l" "caddr_t addr"
.Fn ras_lookup "struct proc *p" "caddr_t addr"
.Ft int
.Fn ras_fork "struct lwp *l1" "struct lwp *l2"
.Fn ras_fork "struct proc *p1" "struct proc *p2"
.Ft int
.Fn ras_purgeall "struct lwp *l"
.Fn ras_purgeall "struct proc *p"
.Sh DESCRIPTION
Restartable atomic sequences are user code sequences which are
guaranteed to execute without preemption.