diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2009-03-15 13:46:56 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2009-03-15 13:46:56 +0000 |
commit | 99438c631a58d331bc1899ab332de226b496e1b8 (patch) | |
tree | 400794c669f8af58437b8d4917890c643a7df080 /winsup/cygwin/errno.cc | |
parent | 19b3c04bb01e3f046dca0deb4a40805722b66391 (diff) | |
download | cygnal-99438c631a58d331bc1899ab332de226b496e1b8.tar.gz cygnal-99438c631a58d331bc1899ab332de226b496e1b8.tar.bz2 cygnal-99438c631a58d331bc1899ab332de226b496e1b8.zip |
* errno.cc (_sys_errlist): Add ESTRPIPE.
Diffstat (limited to 'winsup/cygwin/errno.cc')
-rw-r--r-- | winsup/cygwin/errno.cc | 3 |
1 files changed, 2 insertions, 1 deletions
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]); |