#include "BLOCXX_config.h"
#include "Select.hpp"
#include "AutoPtr.hpp"
#include "Assertion.hpp"
#include "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>
Go to the source code of this file.
Namespaces | |
namespace | BLOCXX_NAMESPACE |
namespace | BLOCXX_NAMESPACE::Select |
Functions | |
int | BLOCXX_NAMESPACE::Select::selectRWEpoll (SelectObjectArray &selarray, UInt32 ms) |
int | BLOCXX_NAMESPACE::Select::selectRWPoll (SelectObjectArray &selarray, UInt32 ms) |
int | BLOCXX_NAMESPACE::Select::selectRWSelect (SelectObjectArray &selarray, UInt32 ms) |
int | BLOCXX_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 | BLOCXX_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. |