aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/src/event_loop.h
blob: 992eb5cb81e1fe8f0b965044295453996b586abe (plain) (tree)
1
2
3
4
5
6
7
8
9
10
  
                                                    







                                                          






                                             
                                                                                    
 
                                                                                        
                                                                                             

      
/*
 * Copyright (c) 2023 Egor Tensin <egor@tensin.name>
 * 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