#include <BPoll.h>
Public Types | |
typedef pollfd | PollFd |
Public Member Functions | |
BPoll () | |
~BPoll () | |
void | append (int fd, int events=POLLIN|POLLERR|POLLHUP|POLLNVAL) |
Append a file descriptor to polling list. | |
void | delFd (int fd) |
Remove a file descriptor from polling list. | |
BError | doPoll (int &fd, int timeoutUs=-1) |
Perform polling operation. | |
int | getPollFdsNum () |
PollFd * | getPollFds () |
void | clear () |
Private Member Functions | |
int | nextFd (int i) |
Private Attributes | |
int | ofdsNum |
The number of FD's in list. | |
PollFd * | ofds |
The list of poll fd's. | |
int | ofdsNext |
The next list entry for round robin polling. |
typedef struct pollfd BPoll::PollFd |
BPoll::BPoll | ( | ) |
BPoll::~BPoll | ( | ) |
void BPoll::append | ( | int | fd, | |
int | events = POLLIN|POLLERR|POLLHUP|POLLNVAL | |||
) |
Append a file descriptor to polling list.
void BPoll::clear | ( | ) |
void BPoll::delFd | ( | int | fd | ) |
Remove a file descriptor from polling list.
BError BPoll::doPoll | ( | int & | fd, | |
int | timeoutUs = -1 | |||
) |
Perform polling operation.
BPoll::PollFd * BPoll::getPollFds | ( | ) |
int BPoll::getPollFdsNum | ( | ) |
int BPoll::nextFd | ( | int | i | ) | [private] |
PollFd* BPoll::ofds [private] |
The list of poll fd's.
int BPoll::ofdsNext [private] |
The next list entry for round robin polling.
int BPoll::ofdsNum [private] |
The number of FD's in list.