Added missing function arguments. Also made it clear which process receives

the data.
This commit is contained in:
jeremy 1997-05-21 03:14:07 +00:00
parent c3d0010341
commit 98b6233268
1 changed files with 7 additions and 6 deletions

View File

@ -1,4 +1,4 @@
.\" $NetBSD: store.9,v 1.3 1996/06/19 22:50:26 pk Exp $
.\" $NetBSD: store.9,v 1.4 1997/05/21 03:14:07 jeremy Exp $
.\"
.\" Copyright (c) 1996 Jason R. Thorpe.
.\" All rights reserved.
@ -42,17 +42,18 @@
.Fd #include <sys/types.h>
.Fd #include <sys/systm.h>
.Ft int
.Fn subyte "void *base"
.Fn subyte "void *base" "int c"
.Ft int
.Fn susword "void *base"
.Fn susword "void *base" "short c"
.Ft int
.Fn suswintr "void *base"
.Fn suswintr "void *base" "short c"
.Ft int
.Fn suword "void *base"
.Fn suword "void *base" "long c"
.Sh DESCRIPTION
The
.Nm
functions are designed to copy small amounts of data to user-space.
functions are designed to copy small amounts of data to the user-space of the
currently running process.
.Pp
The
.Nm