=?UTF-8?Q?Andr=C3=A9=20Hentschel=20?=: ntdll: Map ETIME to STATUS_IO_TIMEOUT.

Alexandre Julliard julliard at winehq.org
Sat Oct 8 15:16:37 CDT 2011


Module: wine
Branch: master
Commit: 905a819d7c06bc066925b59c6f18c81450c49657
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=905a819d7c06bc066925b59c6f18c81450c49657

Author: André Hentschel <nerv at 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:




More information about the wine-cvs mailing list