Date: Mon, 22 Oct 2001 00:57:02 -0700 (PDT) From: Chad David <davidc@acns.ab.ca> To: freebsd-gnats-submit@freebsd.org Subject: docs/31428: uiomove.9 has not been updated to reflect changes to the uio structure. Message-ID: <200110220757.f9M7v2d00488@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 31428 >Category: docs >Synopsis: uiomove.9 has not been updated to reflect changes to the uio structure. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Mon Oct 22 01:00:01 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Chad David >Release: current >Organization: ACNS Inc. >Environment: FreeBSD whisper 5.0-CURRENT FreeBSD 5.0-CURRENT #6: Wed Oct 17 03:13:43 MDT 2001 davidc@whisper:/mnt1/devel/work/dev/bsd/test/src/sys/i386/compile/WHISPER_OPT i386 >Description: uiomove.9 has not been updated to reflect the change of struct proc uio_procp to struct thread uio_td. >How-To-Repeat: man uiomove >Fix: Patch the file. --- uio.9 Fri Oct 5 11:33:22 2001 +++ uio.9.x Mon Oct 22 01:49:26 2001 @@ -44,7 +44,7 @@ int uio_resid; enum uio_seg uio_segflg; enum uio_rw uio_rw; - struct proc *uio_procp; + struct thread *uio_td; }; .Ed .Ft int @@ -102,10 +102,10 @@ .Dv UIO_READ , or .Dv UIO_WRITE . -.It Dv uio_procp +.It Dv uio_td The pointer to a -.Li struct proc -for the associated process; used if +.Li struct thread +for the associated thread; used if .Dv uio_segflg indicates that the transfer is to be made from/to a process's address space. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200110220757.f9M7v2d00488>