diff options
-rw-r--r-- | winsup/cygwin/ChangeLog | 4 | ||||
-rw-r--r-- | winsup/cygwin/errno.cc | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 418e92619..464bc38dc 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,7 @@ +2009-03-15 Yaakov Selkowitz <yselkowitz@users.sourceforge.net> + + * errno.cc (_sys_errlist): Add ESTRPIPE. + 2009-03-15 Corinna Vinschen <corinna@vinschen.de> * cygwin.din: Export wcsdup. diff --git a/winsup/cygwin/errno.cc b/winsup/cygwin/errno.cc index a40427816..fc14dcbe3 100644 --- a/winsup/cygwin/errno.cc +++ b/winsup/cygwin/errno.cc @@ -287,7 +287,8 @@ const char *_sys_errlist[] NO_COPY_INIT = /* EOVERFLOW 139 */ "Value too large for defined data type", /* ECANCELED 140 */ "Operation canceled", /* ENOTRECOVERABLE 141 */ "State not recoverable", -/* EOWNERDEAD 142 */ "Previous owner died" +/* EOWNERDEAD 142 */ "Previous owner died", +/* ESTRPIPE 143 */ "Streams pipe error" }; int NO_COPY_INIT _sys_nerr = sizeof (_sys_errlist) / sizeof (_sys_errlist[0]); |