blob: 5273cc6efe00cf9f2a3ef58812791a17dcc49c2f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/*
* Copyright (c) 2023 Egor Tensin <Egor.Tensin@gmail.com>
* This file is part of the "cimple" project.
* For details, see https://github.com/egor-tensin/cimple.
* Distributed under the MIT License.
*/
#ifndef __EVENT_LOOP_H__
#define __EVENT_LOOP_H__
#include <poll.h>
struct event_loop;
int event_loop_create(struct event_loop **);
void event_loop_destroy(struct event_loop *);
int event_loop_run(struct event_loop *);
#define EVENT_LOOP_REMOVE 1
typedef int (*event_handler)(struct event_loop *, int fd, short revents, void *arg);
int event_loop_add(struct event_loop *, int fd, short events, event_handler, void *arg);
#endif
|