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
parent3a7607289e1bda54c2e5cbc9c94b825acfea568f (diff)
* errno.cc (strerror): Change EAGAIN case to return "Resource temporarily
unavailable" instead of "No more processes".
-rw-r--r--winsup/cygwin/ChangeLog5
-rw-r--r--winsup/cygwin/errno.cc2
2 files changed, 6 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 9fc6b20e7..d4a03c707 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,8 @@
+Mon Nov 6 11:10:44 2000 Jason Tishler <jt@dothill.com>
+
+ * errno.cc (strerror): Change EAGAIN case to return "Resource
+ temporarily unavailable" instead of "No more processes".
+
Mon Nov 6 01:04:35 2000 Christopher Faylor <cgf@cygnus.com>
* child_info.h (child_info): Add pppid_handle for closing the parent's
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";