* errno.cc (_sys_errlist): Add ECANCELED, ENOTRECOVERABLE, EOWNERDEAD.

This commit is contained in:
Eric Blake 2008-09-19 23:29:24 +00:00
parent 1d1c001cb4
commit ddf8700121
2 changed files with 29 additions and 21 deletions

View File

@ -1,3 +1,8 @@
2008-09-19 Eric Blake <ebb9@byu.net>
* errno.cc (_sys_errlist): Add ECANCELED, ENOTRECOVERABLE,
EOWNERDEAD.
2008-09-15 Christopher Faylor <me+cygwin@cgf.cx>
* cygtls.h (unionent): Move from net.cc.

View File

@ -284,7 +284,10 @@ const char *_sys_errlist[] NO_COPY_INIT =
/* ENOSHARE 136 */ "No such host or network path",
/* ECASECLASH 137 */ "Filename exists with different case",
/* EILSEQ 138 */ "Invalid or incomplete multibyte or wide character",
/* EOVERFLOW 139 */ "Value too large for defined data type"
/* EOVERFLOW 139 */ "Value too large for defined data type",
/* ECANCELED 140 */ "Operation canceled",
/* ENOTRECOVERABLE 141 */ "State not recoverable",
/* EOWNERDEAD 142 */ "Previous owner died"
};
int NO_COPY_INIT _sys_nerr = sizeof (_sys_errlist) / sizeof (_sys_errlist[0]);