André Hentschel : ntdll: Map ETIME to STATUS_IO_TIMEOUT.
Module: wine Branch: master Commit: 905a819d7c06bc066925b59c6f18c81450c49657 URL: http://source.winehq.org/git/wine.git/?a=commit;h=905a819d7c06bc066925b59c6f... Author: André Hentschel <nerv(a)dawncrow.de> Date: Mon Oct 3 17:45:27 2011 +0200 ntdll: Map ETIME to STATUS_IO_TIMEOUT. --- dlls/ntdll/file.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/dlls/ntdll/file.c b/dlls/ntdll/file.c index 53984f9..85fc858 100644 --- a/dlls/ntdll/file.c +++ b/dlls/ntdll/file.c @@ -347,6 +347,7 @@ NTSTATUS FILE_GetNtStatus(void) case ECONNRESET:return STATUS_PIPE_DISCONNECTED; case EFAULT: return STATUS_ACCESS_VIOLATION; case ESPIPE: return STATUS_ILLEGAL_FUNCTION; + case ETIME: return STATUS_IO_TIMEOUT; case ENOEXEC: /* ?? */ case EEXIST: /* ?? */ default:
participants (1)
-
Alexandre Julliard