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.
 
 
 
 
 
 

18 lines
288 B

#ifndef __POLLER_H__
#define __POLLER_H__
// dummy poller
struct poller {
int blocked:1;
int connected:1;
int error:1;
int intro:1;
};
void poller_blocked(struct poller *, void *);
int poller_isblocked(struct poller *, void *);
void poller_error(struct poller *, void *);
#endif