Revert change made two years ago(!). copyin_proc() and copyout_proc()

have never been converted to operation on LWPs.
This commit is contained in:
simonb 2008-09-12 00:35:12 +00:00
parent b1779d2b4c
commit 0541e9f3e3
1 changed files with 8 additions and 8 deletions

View File

@ -1,4 +1,4 @@
.\" $NetBSD: copy.9,v 1.18 2006/01/29 02:28:44 rpaulo Exp $
.\" $NetBSD: copy.9,v 1.19 2008/09/12 00:35:12 simonb Exp $
.\"
.\" Copyright (c) 1996, 2002 Jason R. Thorpe.
.\" All rights reserved.
@ -32,7 +32,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
.Dd January 29, 2006
.Dd August 28, 2005
.Dt COPY 9
.Os
.Sh NAME
@ -57,9 +57,9 @@
.Ft int
.Fn copyoutstr "const void *kaddr" "void *uaddr" "size_t len" "size_t *done"
.Ft int
.Fn copyin_proc "struct lwp *l" "const void *uaddr" "void *kaddr" "size_t len"
.Fn copyin_proc "struct proc *p" "const void *uaddr" "void *kaddr" "size_t len"
.Ft int
.Fn copyout_proc "struct lwp *l" "const void *kaddr" "void *uaddr" "size_t len"
.Fn copyout_proc "struct proc *p" "const void *kaddr" "void *uaddr" "size_t len"
.Ft int
.Fn ioctl_copyin "int ioctlflags" "const void *src" "void *dst" "size_t len"
.Ft int
@ -135,13 +135,13 @@ NUL, is returned in
.It Fn copyin_proc
Like
.Fn copyin ,
except it operates on the address space of the lwp
.Fa l .
except it operates on the address space of the process
.Fa p .
.It Fn copyout_proc
Like
.Fn copyout ,
except it operates on the address space of the lwp
.Fa l .
except it operates on the address space of the process
.Fa p .
.It Fn ioctl_copyin
Like
.Fn copyin ,