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.
 
 
 
 
 
 

10 lines
215 B

#include "poller.h"
void poller_blocked(struct poller *p, int fd) {
p->blocked = 1;
}
int poller_isblocked(struct poller *p, int fd) {
return p->blocked ? 1 : 0;
}
void poller_error(struct poller *p, int fd) {
}