* errno.cc (errmap): Map ERROR_SEEK and ERROR_SECTOR_NOT_FOUND.

This commit is contained in:
Corinna Vinschen 2005-09-26 15:27:15 +00:00
parent a3d5219c5f
commit 6c22c79f73
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2005-09-26 Corinna Vinschen <corinna@vinschen.de>
* errno.cc (errmap): Map ERROR_SEEK and ERROR_SECTOR_NOT_FOUND.
2005-09-26 Christopher Faylor <cgf@timesys.com>
* exceptions.cc (_cygtls::call_signal_handler): Minor cleanup.

View File

@ -133,6 +133,8 @@ static NO_COPY struct
X (WAIT_NO_CHILDREN, ECHILD),
X (WORKING_SET_QUOTA, EAGAIN),
X (WRITE_PROTECT, EROFS),
X (SEEK, EINVAL),
X (SECTOR_NOT_FOUND, EINVAL),
{ 0, NULL, 0}
};