Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2009-03-15 16:41:46 +0300
committerCorinna Vinschen <corinna@vinschen.de>2009-03-15 16:41:46 +0300
commit044af76e50ed3bd1c91b5f5c4e79a04ab88a36c9 (patch)
treeb43131cf8a11b91a5c0aa6ce4bbaded394714c01 /newlib/libc/string
parent159a17c8c800f24e82ddd60ed103a76c6f275408 (diff)
* libc/include/sys/errno.h (ESTRPIPE): Define.
* libc/string/strerror.c (strerror): Decode it.
Diffstat (limited to 'newlib/libc/string')
-rw-r--r--newlib/libc/string/strerror.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/newlib/libc/string/strerror.c b/newlib/libc/string/strerror.c
index 73660f076..043763141 100644
--- a/newlib/libc/string/strerror.c
+++ b/newlib/libc/string/strerror.c
@@ -283,6 +283,9 @@ State not recoverable
o EOWNERDEAD
Previous owner died
+o ESTRPIPE
+Strings pipe error
+
o-
RETURNS
@@ -760,6 +763,11 @@ _DEFUN (strerror, (errnum),
error = "Previous owner died";
break;
#endif
+#ifdef ESTRPIPE
+ case ESTRPIPE:
+ error = "Streams pipe error";
+ break;
+#endif
#if defined(EOPNOTSUPP) && (!defined(ENOTSUP) || (ENOTSUP != EOPNOTSUPP))
case EOPNOTSUPP:
error = "Operation not supported on socket";