#include "OW_config.h"
#include "OW_Select.hpp"
#include "OW_AutoPtr.hpp"
#include "OW_Assertion.hpp"
#include "OW_Thread.hpp"
#include <sys/epoll.h>
#include <sys/poll.h>
#include <sys/select.h>
#include <sys/time.h>
#include <sys/types.h>
#include <unistd.h>
#include <errno.h>
Include dependency graph for OW_Select.cpp:
Go to the source code of this file.
Namespaces | |
namespace | OW_NAMESPACE |
namespace | OW_NAMESPACE::Select |
Functions | |
int | OW_NAMESPACE::Select::selectRWEpoll (SelectObjectArray &selarray, UInt32 ms) |
int | OW_NAMESPACE::Select::selectRWPoll (SelectObjectArray &selarray, UInt32 ms) |
int | OW_NAMESPACE::Select::selectRWSelect (SelectObjectArray &selarray, UInt32 ms) |
int | OW_NAMESPACE::Select::selectRW (SelectObjectArray &selarray, UInt32 ms=INFINITE_TIMEOUT) |
Select returns as soon as input or output is available on any of the Select_t objects that are in given array or the timeout has passed. | |
int | OW_NAMESPACE::Select::select (const SelectTypeArray &selarray, UInt32 ms=INFINITE_TIMEOUT) |
Select returns as soon as input is available on any of Select_t objects that are in given array. |