diff options
| author | Jens Schweikhardt <schweikh@FreeBSD.org> | 2002-12-29 16:35:44 +0000 |
|---|---|---|
| committer | Jens Schweikhardt <schweikh@FreeBSD.org> | 2002-12-29 16:35:44 +0000 |
| commit | a5cd8af542ba0de076739937af3e1c77ac8b411f (patch) | |
| tree | 7ea9d3a9452484a06d18787a5c410fa5c4b4ea4a /lib/libc/sys | |
| parent | 867a36e17e90b17177d1007519721d42368641d4 (diff) | |
Notes
Diffstat (limited to 'lib/libc/sys')
| -rw-r--r-- | lib/libc/sys/aio_read.2 | 2 | ||||
| -rw-r--r-- | lib/libc/sys/fhopen.2 | 6 | ||||
| -rw-r--r-- | lib/libc/sys/madvise.2 | 2 | ||||
| -rw-r--r-- | lib/libc/sys/nfssvc.2 | 2 | ||||
| -rw-r--r-- | lib/libc/sys/sigaction.2 | 4 | ||||
| -rw-r--r-- | lib/libc/sys/socket.2 | 2 | ||||
| -rw-r--r-- | lib/libc/sys/vfork.2 | 2 |
7 files changed, 10 insertions, 10 deletions
diff --git a/lib/libc/sys/aio_read.2 b/lib/libc/sys/aio_read.2 index 326d38e61df2..3fccd03eadf4 100644 --- a/lib/libc/sys/aio_read.2 +++ b/lib/libc/sys/aio_read.2 @@ -131,7 +131,7 @@ appropriately; otherwise the .Fn aio_return function must be called, and will return -1, and .Fn aio_error -must be called to determine the actual calue that would have been +must be called to determine the actual value that would have been returned in .Va errno . .Pp diff --git a/lib/libc/sys/fhopen.2 b/lib/libc/sys/fhopen.2 index bf66a08c5311..433da4a89095 100644 --- a/lib/libc/sys/fhopen.2 +++ b/lib/libc/sys/fhopen.2 @@ -5,7 +5,7 @@ .\" All rights reserved. .\" .\" This software was written by William Studenmund of the -.\" Numerical Aerospace Similation Facility, NASA Ames Research Center. +.\" Numerical Aerospace Simulation Facility, NASA Ames Research Center. .\" .\" Redistribution and use in source and binary forms, with or without .\" modification, are permitted provided that the following conditions @@ -81,7 +81,7 @@ provide the functionality of the .Xr fstat 2 and .Xr fstatfs 2 -calls except that they return information for the file refered to by +calls except that they return information for the file referred to by .Fa fhp rather than an open file. .Sh RETURN VALUES @@ -99,7 +99,7 @@ In addition to the errors returned by .Xr fstat 2 , and .Xr fstatfs 2 -respectivly, +respectively, .Fn fhopen , .Fn fhstat , and diff --git a/lib/libc/sys/madvise.2 b/lib/libc/sys/madvise.2 index 71b464c292ab..afd6b6194f37 100644 --- a/lib/libc/sys/madvise.2 +++ b/lib/libc/sys/madvise.2 @@ -122,7 +122,7 @@ For more information see the MAP_NOSYNC section of .It Dv MADV_AUTOSYNC Undoes the effects of MADV_NOSYNC for any future pages dirtied within the address range. The effect on pages already dirtied is indeterminate - they -may or may not be reverted. You can guarentee reversion by using the +may or may not be reverted. You can guarantee reversion by using the .Xr msync 2 or .Xr fsync 2 diff --git a/lib/libc/sys/nfssvc.2 b/lib/libc/sys/nfssvc.2 index 1c240406e474..3c33ab814f10 100644 --- a/lib/libc/sys/nfssvc.2 +++ b/lib/libc/sys/nfssvc.2 @@ -150,7 +150,7 @@ struct nfsd_srvargs { struct ucred nsd_cr; /* Cred. uid maps to */ int nsd_authlen; /* Length of auth string (ret) */ u_char *nsd_authstr; /* Auth string (ret) */ - int nsd_verflen; /* and the verfier */ + int nsd_verflen; /* and the verifier */ u_char *nsd_verfstr; struct timeval nsd_timestamp; /* timestamp from verifier */ u_int32_t nsd_ttl; /* credential ttl (sec) */ diff --git a/lib/libc/sys/sigaction.2 b/lib/libc/sys/sigaction.2 index 0bf13b4e7149..1bb2cd2aa343 100644 --- a/lib/libc/sys/sigaction.2 +++ b/lib/libc/sys/sigaction.2 @@ -456,7 +456,7 @@ the .Dv sa_handler member of .Dv struct sigaction . -In pratice, +In practice, .Fx always sends the three arguments of the latter and since the ANSI C prototype is a subset, both will work. @@ -489,7 +489,7 @@ handler and the .Dv si_code member of the .Dv info -argument to a SA_SIGINFO handler contain a numeric code explaning the +argument to a SA_SIGINFO handler contain a numeric code explaining the cause of the signal, usually one of the .Dv SI_... values from diff --git a/lib/libc/sys/socket.2 b/lib/libc/sys/socket.2 index bd1a14c0f623..c4a86350adc0 100644 --- a/lib/libc/sys/socket.2 +++ b/lib/libc/sys/socket.2 @@ -83,7 +83,7 @@ PF_XTP eXpress Transfer Protocol, PF_COIP Connection-Oriented IP, aka ST II, PF_CNT Computer Network Technology, PF_SIP Simple Internet Protocol, -PF_IPX Novell Intenet Packet eXchange protocol, +PF_IPX Novell Internet Packet eXchange protocol, PF_RTIP Help Identify RTIP packets, PF_PIP Help Identify PIP packets, PF_ISDN Integrated Services Digital Network, diff --git a/lib/libc/sys/vfork.2 b/lib/libc/sys/vfork.2 index 680b67d8c01a..d2ff83675e96 100644 --- a/lib/libc/sys/vfork.2 +++ b/lib/libc/sys/vfork.2 @@ -70,7 +70,7 @@ the parent's context. .Fn Vfork can normally be used just like .Xr fork 2 . -It does not work, however, to return while running in the childs context +It does not work, however, to return while running in the child's context from the procedure that called .Fn vfork since the eventual return from |
