diff options
author | Sitsofe Wheeler <sitsofe@yahoo.com> | 2018-03-25 20:15:29 +0100 |
---|---|---|
committer | Sitsofe Wheeler <sitsofe@yahoo.com> | 2018-03-27 20:18:35 +0100 |
commit | dac7244bf482557c2e46aac1171c3890b3d9316f (patch) | |
tree | 33b530578a61b510af64464afdebd8b35c7813ed /os/windows/posix | |
parent | c1e38868c299c2b3baa0f5a9f038bb1c79c09308 (diff) | |
download | fio-dac7244bf482557c2e46aac1171c3890b3d9316f.tar.gz fio-dac7244bf482557c2e46aac1171c3890b3d9316f.tar.bz2 |
windows: prepare for Windows build split
Signed-off-by: Sitsofe Wheeler <sitsofe@yahoo.com>
Diffstat (limited to 'os/windows/posix')
-rw-r--r-- | os/windows/posix/include/poll.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/os/windows/posix/include/poll.h b/os/windows/posix/include/poll.h index f064e2ba..21e5699b 100644 --- a/os/windows/posix/include/poll.h +++ b/os/windows/posix/include/poll.h @@ -12,4 +12,9 @@ struct pollfd int poll(struct pollfd fds[], nfds_t nfds, int timeout); +#define POLLOUT 1 +#define POLLIN 2 +#define POLLERR 0 +#define POLLHUP 1 + #endif /* POLL_H */ |