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:
authorChristopher Faylor <me@cgf.cx>2000-11-06 19:13:44 +0300
committerChristopher Faylor <me@cgf.cx>2000-11-06 19:13:44 +0300
commitdf664bc1a899e68e7f4ea2d09df257c78baeb0ec (patch)
tree66020f4f3742a1b3bf65a9e269537081d5cff0fd /winsup/cygwin/errno.cc
parent3a7607289e1bda54c2e5cbc9c94b825acfea568f (diff)
* errno.cc (strerror): Change EAGAIN case to return "Resource temporarily
unavailable" instead of "No more processes".
Diffstat (limited to 'winsup/cygwin/errno.cc')
-rw-r--r--winsup/cygwin/errno.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/errno.cc b/winsup/cygwin/errno.cc
index 6f51f21ca..87a37910b 100644
--- a/winsup/cygwin/errno.cc
+++ b/winsup/cygwin/errno.cc
@@ -334,7 +334,7 @@ strerror (int errnum)
error = "No children";
break;
case EAGAIN:
- error = "No more processes";
+ error = "Resource temporarily unavailable";
break;
case ENOMEM:
error = "Not enough memory";