use .Er
This commit is contained in:
parent
75eb02cdfc
commit
3b476f4adb
|
@ -1,4 +1,4 @@
|
|||
.\" $NetBSD: getfh.2,v 1.10 1999/12/02 21:42:36 kleink Exp $
|
||||
.\" $NetBSD: getfh.2,v 1.11 1999/12/11 19:35:48 msaitoh Exp $
|
||||
.\"
|
||||
.\" Copyright (c) 1989, 1991, 1993
|
||||
.\" The Regents of the University of California. All rights reserved.
|
||||
|
@ -61,11 +61,11 @@ is set to indicate the error.
|
|||
.Fn getfh
|
||||
fails if one or more of the following are true:
|
||||
.Bl -tag -width Er
|
||||
.It Bq ENOTDIR
|
||||
.It Bq Er ENOTDIR
|
||||
A component of the path prefix of
|
||||
.Fa path
|
||||
is not a directory.
|
||||
.It Bq ENAMETOOLONG
|
||||
.It Bq Er ENAMETOOLONG
|
||||
The length of a component of
|
||||
.Fa path
|
||||
exceeds
|
||||
|
@ -75,20 +75,20 @@ characters, or the length of
|
|||
exceeds
|
||||
.Dv {PATH_MAX}
|
||||
characters.
|
||||
.It Bq ENOENT
|
||||
.It Bq Er ENOENT
|
||||
The file referred to by
|
||||
.Fa path
|
||||
does not exist.
|
||||
.It Bq EACCES
|
||||
.It Bq Er EACCES
|
||||
Search permission is denied for a component of the path prefix of
|
||||
.Fa path .
|
||||
.It Bq ELOOP
|
||||
.It Bq Er ELOOP
|
||||
Too many symbolic links were encountered in translating
|
||||
.Fa path .
|
||||
.It Bq EFAULT
|
||||
.It Bq Er EFAULT
|
||||
.Fa fhp
|
||||
points to an invalid address.
|
||||
.It Bq EIO
|
||||
.It Bq Er EIO
|
||||
An
|
||||
.Tn I/O
|
||||
error occurred while reading from or writing to the file system.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.\" $NetBSD: nfssvc.2,v 1.9 1999/12/02 21:42:38 kleink Exp $
|
||||
.\" $NetBSD: nfssvc.2,v 1.10 1999/12/11 19:35:48 msaitoh Exp $
|
||||
.\"
|
||||
.\" Copyright (c) 1989, 1991, 1993
|
||||
.\" The Regents of the University of California. All rights reserved.
|
||||
|
@ -102,7 +102,9 @@ If the mount point is using Kerberos, then the
|
|||
.Xr mount_nfs 8
|
||||
daemon will return from
|
||||
.Fn nfssvc
|
||||
with errno == ENEEDAUTH whenever the client side requires an ``rcmd''
|
||||
with errno ==
|
||||
.Er ENEEDAUTH
|
||||
whenever the client side requires an ``rcmd''
|
||||
authentication ticket for the user.
|
||||
The
|
||||
.Xr mount_nfs 8
|
||||
|
@ -151,7 +153,8 @@ Whenever an
|
|||
.Xr nfsd 8
|
||||
daemon receives a Kerberos authentication ticket, it will return from
|
||||
.Fn nfssvc
|
||||
with errno == ENEEDAUTH.
|
||||
with errno ==
|
||||
.Er ENEEDAUTH .
|
||||
The
|
||||
.Xr nfsd 8
|
||||
will attempt to authenticate the ticket and generate a set of credentials
|
||||
|
@ -236,7 +239,7 @@ system call is designed specifically for the
|
|||
support daemons and as such is specific to their requirements.
|
||||
It should really return values to indicate the need for authentication
|
||||
support, since
|
||||
.Dv ENEEDAUTH
|
||||
.Er ENEEDAUTH
|
||||
is not really an error.
|
||||
Several fields of the argument structures are assumed to be valid and
|
||||
sometimes to be unchanged from a previous call, such that
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.\" $NetBSD: sigaction.2,v 1.22 1999/12/02 21:42:39 kleink Exp $
|
||||
.\" $NetBSD: sigaction.2,v 1.23 1999/12/11 19:35:48 msaitoh Exp $
|
||||
.\"
|
||||
.\" Copyright (c) 1980, 1990, 1993
|
||||
.\" The Regents of the University of California. All rights reserved.
|
||||
|
@ -200,7 +200,7 @@ process will be automatically waited for.
|
|||
If a signal is caught during the system calls listed below,
|
||||
the call may be forced to terminate
|
||||
with the error
|
||||
.Dv EINTR ,
|
||||
.Er EINTR ,
|
||||
the call may return with a data transfer shorter than requested,
|
||||
or the call may be restarted.
|
||||
Restarting of pending calls is requested
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.\" $NetBSD: sigaltstack.2,v 1.12 1999/12/02 21:42:39 kleink Exp $
|
||||
.\" $NetBSD: sigaltstack.2,v 1.13 1999/12/11 19:35:48 msaitoh Exp $
|
||||
.\"
|
||||
.\" Copyright (c) 1983, 1991, 1992, 1993
|
||||
.\" The Regents of the University of California. All rights reserved.
|
||||
|
@ -87,7 +87,7 @@ Trying to disable an active stack will cause
|
|||
to return -1 with
|
||||
.Va errno
|
||||
set to
|
||||
.Dv EINVAL .
|
||||
.Er EINVAL .
|
||||
A disabled stack will cause all signals to be
|
||||
taken on the regular user stack.
|
||||
If the stack is later re-enabled then all signals that were specified
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.\" $NetBSD: sigsuspend.2,v 1.10 1999/12/02 21:42:39 kleink Exp $
|
||||
.\" $NetBSD: sigsuspend.2,v 1.11 1999/12/11 19:35:48 msaitoh Exp $
|
||||
.\"
|
||||
.\" Copyright (c) 1983, 1991, 1993
|
||||
.\" The Regents of the University of California. All rights reserved.
|
||||
|
@ -71,7 +71,7 @@ function
|
|||
always terminates by being interrupted, returning -1 with
|
||||
.Va errno
|
||||
set to
|
||||
.Dv EINTR .
|
||||
.Er EINTR .
|
||||
.Sh SEE ALSO
|
||||
.Xr sigprocmask 2 ,
|
||||
.Xr sigaction 2 ,
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.\" $NetBSD: socket.2,v 1.15 1999/12/02 21:42:39 kleink Exp $
|
||||
.\" $NetBSD: socket.2,v 1.16 1999/12/11 19:35:48 msaitoh Exp $
|
||||
.\"
|
||||
.\" Copyright (c) 1983, 1991, 1993
|
||||
.\" The Regents of the University of California. All rights reserved.
|
||||
|
@ -153,7 +153,7 @@ within a reasonable length of time, then
|
|||
the connection is considered broken and calls
|
||||
will indicate an error with
|
||||
-1 returns and with
|
||||
.Dv ETIMEDOUT
|
||||
.Er ETIMEDOUT
|
||||
as the specific code
|
||||
in the global variable
|
||||
.Va errno .
|
||||
|
|
Loading…
Reference in New Issue