diff options
author | pluknet <pluknet@FreeBSD.org> | 2013-05-04 19:07:22 +0000 |
---|---|---|
committer | pluknet <pluknet@FreeBSD.org> | 2013-05-04 19:07:22 +0000 |
commit | bf7b6b6227253281ec4cfedd2f8c95e19532acb3 (patch) | |
tree | 36569bd97613ed668196165becbd391608df4cd0 /lib/libc/gen | |
parent | f106bf787a663f94d44ad2b9916394298e13428e (diff) | |
download | FreeBSD-src-bf7b6b6227253281ec4cfedd2f8c95e19532acb3.zip FreeBSD-src-bf7b6b6227253281ec4cfedd2f8c95e19532acb3.tar.gz |
POSIX 1003.1-2008: add ENOTRECOVERABLE, EOWNERDEAD errnos.
Diffstat (limited to 'lib/libc/gen')
-rw-r--r-- | lib/libc/gen/errlst.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libc/gen/errlst.c b/lib/libc/gen/errlst.c index d817823..7b4fd62 100644 --- a/lib/libc/gen/errlst.c +++ b/lib/libc/gen/errlst.c @@ -152,5 +152,7 @@ const char *const sys_errlist[] = { "Protocol error", /* 92 - EPROTO */ "Capabilities insufficient", /* 93 - ENOTCAPABLE */ "Not permitted in capability mode", /* 94 - ECAPMODE */ + "State not recoverable", /* 95 - ENOTRECOVERABLE */ + "Previous owner died", /* 96 - EOWNERDEAD */ }; const int sys_nerr = sizeof(sys_errlist) / sizeof(sys_errlist[0]); |