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.
52 lines
1013 B
52 lines
1013 B
#ifndef __POLLER_H__
|
|
#define __POLLER_H__
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
#include <stdint.h>
|
|
#include <time.h>
|
|
#include <glib.h>
|
|
#include "obj.h"
|
|
|
|
|
|
|
|
typedef void (*poller_func_t)(int, void *, uintptr_t);
|
|
|
|
struct poller_item {
|
|
int fd;
|
|
struct obj *obj;
|
|
uintptr_t uintp;
|
|
|
|
poller_func_t readable;
|
|
poller_func_t writeable;
|
|
poller_func_t closed;
|
|
poller_func_t timer;
|
|
};
|
|
|
|
struct poller;
|
|
|
|
|
|
|
|
extern __thread time_t poller_now;
|
|
|
|
|
|
|
|
|
|
struct poller *poller_new(void);
|
|
int poller_add_item(struct poller *, struct poller_item *);
|
|
int poller_update_item(struct poller *, struct poller_item *);
|
|
int poller_del_item(struct poller *, int);
|
|
void poller_blocked(struct poller *, int);
|
|
int poller_isblocked(struct poller *, int);
|
|
void poller_error(struct poller *, int);
|
|
|
|
int poller_poll(struct poller *, int);
|
|
void poller_timers_wait_run(struct poller *, int max);
|
|
|
|
int poller_add_timer(struct poller *, void (*)(void *), struct obj *);
|
|
int poller_del_timer(struct poller *, void (*)(void *), struct obj *);
|
|
|
|
|
|
#endif
|