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
path: root/winsup
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2005-08-25 19:27:10 +0400
committerChristopher Faylor <me@cgf.cx>2005-08-25 19:27:10 +0400
commitb4b0980b9d833ee7e2bd84a9b5db573f7dab9eec (patch)
treef4498c8e28ee5039df9ce7d8541cc8388fa5ed02 /winsup
parent9e28e551f221b360e8dea36d53d0c5b6c1eb3c96 (diff)
* errno.cc (errmap): Translate ERROR_NO_MORE_ITEMS to ENMFILE.
Diffstat (limited to 'winsup')
-rw-r--r--winsup/cygwin/ChangeLog4
-rw-r--r--winsup/cygwin/errno.cc1
2 files changed, 5 insertions, 0 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 45c462ab1..d3a9b10e1 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,7 @@
+2005-08-25 Christopher Faylor <cgf@timesys.com>
+
+ * errno.cc (errmap): Translate ERROR_NO_MORE_ITEMS to ENMFILE.
+
2005-08-24 Christopher Faylor <cgf@timesys.com>
* exceptions.cc (handle_sigsuspend): Just sleep forever if called from
diff --git a/winsup/cygwin/errno.cc b/winsup/cygwin/errno.cc
index 8b84fb8ca..1d9220f21 100644
--- a/winsup/cygwin/errno.cc
+++ b/winsup/cygwin/errno.cc
@@ -102,6 +102,7 @@ static NO_COPY struct
X (NO_DATA_DETECTED, EIO),
X (NO_MEDIA_IN_DRIVE, ENOMEDIUM),
X (NO_MORE_FILES, ENMFILE),
+ X (NO_MORE_ITEMS, ENMFILE),
X (NO_MORE_SEARCH_HANDLES, ENFILE),
X (NO_PROC_SLOTS, EAGAIN),
X (NO_SIGNAL_SENT, EIO),