summaryrefslogtreecommitdiffstats
path: root/include/event.h
blob: b6bff5adf73324d3366cfe08252b850396f44262 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef _EVENT_H_
#define _EVENT_H_

struct evfd *create_evfd(void);

void destroy_evfd(struct evfd *e);

int get_read_evfd(struct evfd *evfd);

int write_evfd(struct evfd *evfd);

int read_evfd(struct evfd *evfd);

#endif