DMTCP
|
#include <poll.h>
#include <sys/select.h>
#include <sys/time.h>
#include <sys/types.h>
#include <unistd.h>
#include "dmtcpalloc.h"
#include "eventwrappers.h"
#include "eventconnection.h"
#include "eventconnlist.h"
#include "jassert.h"
Go to the source code of this file.
Functions | |
int | poll (struct pollfd *fds, nfds_t nfds, int timeout) |
int | pselect (int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, const struct timespec *timeout, const sigset_t *sigmask) |
int | select (int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *timeout) |
int poll | ( | struct pollfd * | fds, |
nfds_t | nfds, | ||
int | timeout | ||
) |
Definition at line 70 of file eventwrappers.cpp.
int pselect | ( | int | nfds, |
fd_set * | readfds, | ||
fd_set * | writefds, | ||
fd_set * | exceptfds, | ||
const struct timespec * | timeout, | ||
const sigset_t * | sigmask | ||
) |
Definition at line 88 of file eventwrappers.cpp.
int select | ( | int | nfds, |
fd_set * | readfds, | ||
fd_set * | writefds, | ||
fd_set * | exceptfds, | ||
struct timeval * | timeout | ||
) |
Definition at line 107 of file eventwrappers.cpp.