You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
#ifndef __POLLER_H__
|
|
|
#define __POLLER_H__
|
|
|
|
|
|
|
|
|
struct poller;
|
|
|
|
|
|
void poller_blocked(struct poller *, int);
|
|
|
int poller_isblocked(struct poller *, int);
|
|
|
void poller_error(struct poller *, int);
|
|
|
|
|
|
|
|
|
#endif
|