diff options
author | Max Kellermann <max@duempel.org> | 2015-03-03 19:44:32 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2015-03-03 19:44:32 +0100 |
commit | cd776ff1a8ae0b0c2ef0068c0ee81332cddac134 (patch) | |
tree | bfd2bfdd11d3c50960073a18e67ccbfb3180c254 /src/system/FileDescriptor.hxx | |
parent | 40a587bbaff38bb0b60313c24b94e2ecd53b181c (diff) |
system/FileDescriptor: fix WIN32 checks
Diffstat (limited to 'src/system/FileDescriptor.hxx')
-rw-r--r-- | src/system/FileDescriptor.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/system/FileDescriptor.hxx b/src/system/FileDescriptor.hxx index 8db0dffdd..37657332b 100644 --- a/src/system/FileDescriptor.hxx +++ b/src/system/FileDescriptor.hxx @@ -93,7 +93,7 @@ public: bool Open(const char *pathname, int flags); bool OpenReadOnly(const char *pathname); -#ifdef HAVE_POSIX +#ifndef WIN32 bool OpenNonBlocking(const char *pathname); static bool CreatePipe(FileDescriptor &r, FileDescriptor &w); @@ -160,7 +160,7 @@ public: return ::write(fd, buffer, length); } -#ifdef HAVE_POSIX +#ifndef WIN32 int Poll(short events, int timeout) const; int WaitReadable(int timeout) const; |