aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/event_loop.h
blob: c08e84da16616ea75bec80f96bbdcdae0799fd3c (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
/*
 * 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__

struct event_loop;

int event_loop_create(struct event_loop **);
void event_loop_destroy(struct event_loop *);

int event_loop_run(struct event_loop *);

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);
int event_loop_add_once(struct event_loop *, int fd, short events, event_handler, void *arg);

#endif