s/EACCESS/EACCES/, from Brian Evans via OpenBSD
This commit is contained in:
parent
d1033b38a5
commit
335c5b7630
@ -1,4 +1,4 @@
|
||||
.\" $NetBSD: getcwd.3,v 1.7 1997/10/08 09:28:01 kleink Exp $
|
||||
.\" $NetBSD: getcwd.3,v 1.8 1997/11/27 07:36:24 mikel Exp $
|
||||
.\"
|
||||
.\" Copyright (c) 1991, 1993
|
||||
.\" The Regents of the University of California. All rights reserved.
|
||||
@ -111,7 +111,7 @@ The
|
||||
function
|
||||
will fail if:
|
||||
.Bl -tag -width Er
|
||||
.It Bq Er EACCESS
|
||||
.It Bq Er EACCES
|
||||
Read or search permission was denied for a component of the pathname.
|
||||
.It Bq Er EINVAL
|
||||
The
|
||||
|
@ -1,4 +1,4 @@
|
||||
.\" $NetBSD: msgctl.2,v 1.2 1997/03/27 08:20:35 mikel Exp $
|
||||
.\" $NetBSD: msgctl.2,v 1.3 1997/11/27 07:37:16 mikel Exp $
|
||||
.\"
|
||||
.\" Copyright (c) 1995 Frank van der Linden
|
||||
.\" All rights reserved.
|
||||
@ -180,7 +180,7 @@ An attempt is made to increase the value of
|
||||
.Va msg_qbytes
|
||||
through IPC_SET
|
||||
but the caller is not the super-user.
|
||||
.It Bq Er EACCESS
|
||||
.It Bq Er EACCES
|
||||
The command is IPC_STAT
|
||||
and the caller has no read permission for this message queue.
|
||||
.It Bq Er EINVAL
|
||||
|
@ -1,4 +1,4 @@
|
||||
.\" $NetBSD: msgrcv.2,v 1.2 1997/03/27 08:20:37 mikel Exp $
|
||||
.\" $NetBSD: msgrcv.2,v 1.3 1997/11/27 07:37:17 mikel Exp $
|
||||
.\"
|
||||
.\" Copyright (c) 1995 Frank van der Linden
|
||||
.\" All rights reserved.
|
||||
@ -157,7 +157,7 @@ A matching message was received, but its size was greater than
|
||||
.Fa msgsz
|
||||
and the MSG_NOERROR flag was not set in
|
||||
.Fa msgflg .
|
||||
.It Bq Er EACCESS
|
||||
.It Bq Er EACCES
|
||||
The calling process does not have read access to the message queue.
|
||||
.It Bq Er EFAULT
|
||||
.Fa msgp
|
||||
|
@ -1,4 +1,4 @@
|
||||
.\" $NetBSD: msgsnd.2,v 1.2 1997/03/27 08:20:36 mikel Exp $
|
||||
.\" $NetBSD: msgsnd.2,v 1.3 1997/11/27 07:37:17 mikel Exp $
|
||||
.\"
|
||||
.\" Copyright (c) 1995 Frank van der Linden
|
||||
.\" All rights reserved.
|
||||
@ -126,7 +126,7 @@ message.
|
||||
.Fa msgsz
|
||||
is less than 0, or greater than
|
||||
.Va msg_qbytes .
|
||||
.It Bq Er EACCESS
|
||||
.It Bq Er EACCES
|
||||
The calling process does not have write access to the message queue.
|
||||
.It Bq Er EAGAIN
|
||||
There was no space for this message either on the queue, or in the whole
|
||||
|
@ -1,4 +1,4 @@
|
||||
.\" $NetBSD: semctl.2,v 1.2 1997/03/27 08:20:40 mikel Exp $
|
||||
.\" $NetBSD: semctl.2,v 1.3 1997/11/27 07:37:18 mikel Exp $
|
||||
.\"
|
||||
.\" Copyright (c) 1995 Frank van der Linden
|
||||
.\" All rights reserved.
|
||||
@ -196,7 +196,7 @@ the effective uid match either the
|
||||
or
|
||||
.Va sem_perm.cuid
|
||||
fields of the data structure associated with the message queue.
|
||||
.It Bq Er EACCESS
|
||||
.It Bq Er EACCES
|
||||
The caller has no operation permission for this semaphore.
|
||||
.It Bq Er EINVAL
|
||||
.Fa semid
|
||||
|
@ -1,4 +1,4 @@
|
||||
.\" $NetBSD: semget.2,v 1.2 1997/03/27 08:20:41 mikel Exp $
|
||||
.\" $NetBSD: semget.2,v 1.3 1997/11/27 07:37:19 mikel Exp $
|
||||
.\"
|
||||
.\" Copyright (c) 1995 Frank van der Linden
|
||||
.\" All rights reserved.
|
||||
@ -97,7 +97,7 @@ is returned and
|
||||
is set to reflect the error.
|
||||
.Sh ERRORS
|
||||
.Bl -tag -width Er
|
||||
.It Bq Er EACCESS
|
||||
.It Bq Er EACCES
|
||||
The caller has no permission to access a semaphore set already associated with
|
||||
.Fa key.
|
||||
.It Bq Er EEXIST
|
||||
|
@ -1,4 +1,4 @@
|
||||
.\" $NetBSD: semop.2,v 1.1 1995/10/16 23:49:28 jtc Exp $
|
||||
.\" $NetBSD: semop.2,v 1.2 1997/11/27 07:37:19 mikel Exp $
|
||||
.\"
|
||||
.\" Copyright (c) 1995 Frank van der Linden
|
||||
.\" All rights reserved.
|
||||
@ -122,7 +122,7 @@ There is no semaphore associated with
|
||||
The semaphore set was removed while the process was waiting for one of
|
||||
its semaphores to reach a certain value.
|
||||
|
||||
.It Bq Er EACCESS
|
||||
.It Bq Er EACCES
|
||||
The calling process has no permission to access the specified semaphore set.
|
||||
.It Bq Er E2BIG
|
||||
The value of
|
||||
|
@ -1,4 +1,4 @@
|
||||
.\" $NetBSD: setpgid.2,v 1.10 1997/07/14 23:20:13 kleink Exp $
|
||||
.\" $NetBSD: setpgid.2,v 1.11 1997/11/27 07:37:20 mikel Exp $
|
||||
.\"
|
||||
.\" Copyright (c) 1980, 1991, 1993
|
||||
.\" The Regents of the University of California. All rights reserved.
|
||||
@ -69,7 +69,7 @@ indicates the reason.
|
||||
.Fn Setpgid
|
||||
will fail and the process group will not be altered if:
|
||||
.Bl -tag -width Er
|
||||
.It Bq Er EACCESS
|
||||
.It Bq Er EACCES
|
||||
The value of the
|
||||
.Fa pid
|
||||
argument matches the process ID of a child process of the calling process,
|
||||
|
@ -1,4 +1,4 @@
|
||||
.\" $NetBSD: shmat.2,v 1.2 1997/03/27 08:20:38 mikel Exp $
|
||||
.\" $NetBSD: shmat.2,v 1.3 1997/11/27 07:37:20 mikel Exp $
|
||||
.\"
|
||||
.\" Copyright (c) 1995 Frank van der Linden
|
||||
.\" All rights reserved.
|
||||
@ -90,7 +90,7 @@ is set to indicate the error.
|
||||
.Fn shmat
|
||||
will fail if:
|
||||
.Bl -tag -width Er
|
||||
.It Bq Er EACCESS
|
||||
.It Bq Er EACCES
|
||||
The calling process has no permission to access this shared memory segment.
|
||||
.It Bq Er ENOMEM
|
||||
There is not enough available data space for the calling process to
|
||||
|
@ -1,4 +1,4 @@
|
||||
.\" $NetBSD: shmctl.2,v 1.3 1997/03/27 08:20:39 mikel Exp $
|
||||
.\" $NetBSD: shmctl.2,v 1.4 1997/11/27 07:37:21 mikel Exp $
|
||||
.\"
|
||||
.\" Copyright (c) 1995 Frank van der Linden
|
||||
.\" All rights reserved.
|
||||
@ -168,7 +168,7 @@ An attempt is made to increase the value of
|
||||
.Va shm_qbytes
|
||||
through IPC_SET
|
||||
but the caller is not the super-user.
|
||||
.It Bq Er EACCESS
|
||||
.It Bq Er EACCES
|
||||
The command is IPC_STAT
|
||||
and the caller has no read permission for this shared memory segment.
|
||||
.It Bq Er EINVAL
|
||||
|
@ -1,4 +1,4 @@
|
||||
.\" $NetBSD: socket.2,v 1.5 1995/02/27 12:37:53 cgd Exp $
|
||||
.\" $NetBSD: socket.2,v 1.6 1997/11/27 07:37:21 mikel Exp $
|
||||
.\"
|
||||
.\" Copyright (c) 1983, 1991, 1993
|
||||
.\" The Regents of the University of California. All rights reserved.
|
||||
@ -221,7 +221,7 @@ within this domain.
|
||||
The per-process descriptor table is full.
|
||||
.It Bq Er ENFILE
|
||||
The system file table is full.
|
||||
.It Bq Er EACCESS
|
||||
.It Bq Er EACCES
|
||||
Permission to create a socket of the specified type and/or protocol
|
||||
is denied.
|
||||
.It Bq Er ENOBUFS
|
||||
|
Loading…
Reference in New Issue
Block a user