Download this file
19 lines (12 with data), 400 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 | #ifndef CHILON_POLL_POLL_STATUS_HPP
#define CHILON_POLL_POLL_STATUS_HPP
#include <chilon/config.hpp>
#if CHILON_FS_MONITOR_TYPE == epoll
#include <chilon/poll/detail/epoll/poll_status.hpp>
#elif CHILON_FS_MONITOR_TYPE == kqueue
#include <chilon/poll/detail/kqueue/poll_status.hpp>
#endif
namespace chilon { namespace poll {
typedef detail::CHILON_POLL_TYPE::poll_status poll_status;
} }
#endif
|
×
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.