diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-07-06 18:21:05 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-07-06 18:21:05 +0000 |
commit | 927a4fadabf9da5207030da49f34e578d6533da3 (patch) | |
tree | f5fd96f97f21767605de2c867d993f183b9a7026 /lib/libc | |
parent | 8b054218360a264085baebe85c00bebf6f2f574b (diff) |
these can also return ENFILE
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/sys/execve.2 | 6 | ||||
-rw-r--r-- | lib/libc/sys/socketpair.2 | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/lib/libc/sys/execve.2 b/lib/libc/sys/execve.2 index 409424661d2..9be132f5517 100644 --- a/lib/libc/sys/execve.2 +++ b/lib/libc/sys/execve.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: execve.2,v 1.11 1999/06/29 14:09:54 aaron Exp $ +.\" $OpenBSD: execve.2,v 1.12 1999/07/06 18:21:03 deraadt Exp $ .\" $NetBSD: execve.2,v 1.9 1995/02/27 12:32:25 cgd Exp $ .\" .\" Copyright (c) 1980, 1991, 1993 @@ -259,6 +259,10 @@ point to an illegal address. .It Bq Er EIO An I/O error occurred while reading from the file system. +.It Bq Er ENFILE +During startup of an +.Em interpreter , +the system file table was found to be full. .El .Sh CAVEAT If a program is diff --git a/lib/libc/sys/socketpair.2 b/lib/libc/sys/socketpair.2 index 28b8845772c..d2f39432b07 100644 --- a/lib/libc/sys/socketpair.2 +++ b/lib/libc/sys/socketpair.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: socketpair.2,v 1.9 1999/06/29 14:10:24 aaron Exp $ +.\" $OpenBSD: socketpair.2,v 1.10 1999/07/06 18:21:04 deraadt Exp $ .\" $NetBSD: socketpair.2,v 1.5 1995/02/27 12:38:00 cgd Exp $ .\" .\" Copyright (c) 1983, 1991, 1993 @@ -79,6 +79,8 @@ The address .Fa sv does not specify a valid part of the process address space. +.It Bq Er ENFILE +The system file table is full. .El .Sh SEE ALSO .Xr pipe 2 , |