* errno.cc (strerror): Change EAGAIN case to return "Resource temporarily
unavailable" instead of "No more processes".
This commit is contained in:
parent
3a7607289e
commit
df664bc1a8
@ -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>
|
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
|
* child_info.h (child_info): Add pppid_handle for closing the parent's
|
||||||
|
@ -334,7 +334,7 @@ strerror (int errnum)
|
|||||||
error = "No children";
|
error = "No children";
|
||||||
break;
|
break;
|
||||||
case EAGAIN:
|
case EAGAIN:
|
||||||
error = "No more processes";
|
error = "Resource temporarily unavailable";
|
||||||
break;
|
break;
|
||||||
case ENOMEM:
|
case ENOMEM:
|
||||||
error = "Not enough memory";
|
error = "Not enough memory";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user