123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- #ifndef _EVENT2_EVENT_STRUCT_H_
- #define _EVENT2_EVENT_STRUCT_H_
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include <event2/event-config.h>
- #ifdef _EVENT_HAVE_SYS_TYPES_H
- #include <sys/types.h>
- #endif
- #ifdef _EVENT_HAVE_SYS_TIME_H
- #include <sys/time.h>
- #endif
- #include <event2/util.h>
- #include <event2/keyvalq_struct.h>
- #define EVLIST_TIMEOUT 0x01
- #define EVLIST_INSERTED 0x02
- #define EVLIST_SIGNAL 0x04
- #define EVLIST_ACTIVE 0x08
- #define EVLIST_INTERNAL 0x10
- #define EVLIST_INIT 0x80
- #define EVLIST_ALL (0xf000 | 0x9f)
- #ifndef TAILQ_ENTRY
- #define _EVENT_DEFINED_TQENTRY
- #define TAILQ_ENTRY(type) \
- struct { \
- struct type *tqe_next; \
- struct type **tqe_prev; \
- }
- #endif
- #ifndef TAILQ_HEAD
- #define _EVENT_DEFINED_TQHEAD
- #define TAILQ_HEAD(name, type) \
- struct name { \
- struct type *tqh_first; \
- struct type **tqh_last; \
- }
- #endif
- struct event_base;
- struct event {
- TAILQ_ENTRY(event) ev_active_next;
- TAILQ_ENTRY(event) ev_next;
-
- union {
- TAILQ_ENTRY(event) ev_next_with_common_timeout;
- int min_heap_idx;
- } ev_timeout_pos;
- evutil_socket_t ev_fd;
- struct event_base *ev_base;
- union {
-
- struct {
- TAILQ_ENTRY(event) ev_io_next;
- struct timeval ev_timeout;
- } ev_io;
-
- struct {
- TAILQ_ENTRY(event) ev_signal_next;
- short ev_ncalls;
-
- short *ev_pncalls;
- } ev_signal;
- } _ev;
- short ev_events;
- short ev_res;
- short ev_flags;
- ev_uint8_t ev_pri;
- ev_uint8_t ev_closure;
- struct timeval ev_timeout;
-
- void (*ev_callback)(evutil_socket_t, short, void *arg);
- void *ev_arg;
- };
- TAILQ_HEAD (event_list, event);
- #ifdef _EVENT_DEFINED_TQENTRY
- #undef TAILQ_ENTRY
- #endif
- #ifdef _EVENT_DEFINED_TQHEAD
- #undef TAILQ_HEAD
- #endif
- #ifdef __cplusplus
- }
- #endif
- #endif
|