* errno.cc (errmap): Keep sorted.

This commit is contained in:
Christopher Faylor 2012-08-14 18:38:22 +00:00
parent 04ea60440a
commit 0587c5ef4f
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2012-08-14 Christopher Faylor <me.cygwin2012@cgf.cx>
* errno.cc (errmap): Keep sorted.
2012-08-14 Corinna Vinschen <corinna@vinschen.de>
* thread.cc (semaphore::_fixup_after_fork): Fix Win32 error output in

View File

@ -140,6 +140,7 @@ static NO_COPY struct
X (PIPE_LISTENING, ECOMM),
X (PIPE_NOT_CONNECTED, ECOMM),
X (POSSIBLE_DEADLOCK, EDEADLOCK),
X (PRIVILEGE_NOT_HELD, EPERM),
X (PROCESS_ABORTED, EFAULT),
X (PROC_NOT_FOUND, ESRCH),
X (REM_NOT_LIST, ENONET),
@ -157,7 +158,6 @@ static NO_COPY struct
X (WAIT_NO_CHILDREN, ECHILD),
X (WORKING_SET_QUOTA, EAGAIN),
X (WRITE_PROTECT, EROFS),
X (PRIVILEGE_NOT_HELD, EPERM),
{ 0, NULL, 0}
};