diff options
author | 2017-09-05 03:06:26 +0000 | |
---|---|---|
committer | 2017-09-05 03:06:26 +0000 | |
commit | bd616ed529e7c70988b09205b9cda0caa012efe8 (patch) | |
tree | 2b8ed5d91d2cd9737403a7623a1233caf785d31b /lib/libc/sys | |
parent | Move mutex, condvar, and thread-specific data routes, pthread_once, and (diff) | |
download | wireguard-openbsd-bd616ed529e7c70988b09205b9cda0caa012efe8.tar.xz wireguard-openbsd-bd616ed529e7c70988b09205b9cda0caa012efe8.zip |
Add additional errno values required by POSIX.
ok jca@ kettenis@ deraadt@
Diffstat (limited to 'lib/libc/sys')
-rw-r--r-- | lib/libc/sys/intro.2 | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/lib/libc/sys/intro.2 b/lib/libc/sys/intro.2 index f61baf5ecc6..333fa90c604 100644 --- a/lib/libc/sys/intro.2 +++ b/lib/libc/sys/intro.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: intro.2,v 1.64 2016/04/17 14:36:44 jmc Exp $ +.\" $OpenBSD: intro.2,v 1.65 2017/09/05 03:06:26 jsg Exp $ .\" $NetBSD: intro.2,v 1.6 1995/02/27 12:33:41 cgd Exp $ .\" .\" Copyright (c) 1980, 1983, 1986, 1991, 1993 @@ -30,7 +30,7 @@ .\" .\" @(#)intro.2 8.3 (Berkeley) 12/11/93 .\" -.Dd $Mdocdate: April 17 2016 $ +.Dd $Mdocdate: September 5 2017 $ .Dt INTRO 2 .Os .Sh NAME @@ -425,6 +425,14 @@ An IPC message queue does not contain a message of the desired type, or a message catalog does not contain the requested message. .It Er 91 ENOTSUP Em "Not supported" . The operation has requested an unsupported value. +.It Er 92 EBADMSG Em "Bad message" . +A corrupted message was detected. +.It Er 93 ENOTRECOVERABLE Em "State not recoverable" . +The state protected by a robust mutex is not recoverable. +.It Er 94 EOWNERDEAD Em "Previous owner died" . +The owner of a robust mutex terminated while holding the mutex lock. +.It Er 95 EPROTO Em "Protocol error" . +A device-specific protocol error occurred. .El .Sh DEFINITIONS .Bl -tag -width Ds |