mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-24 02:53:54 +08:00
17 lines
215 B
C
17 lines
215 B
C
|
|
#ifndef EFD_H
|
||
|
|
#define EFD_H
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
// event fd: a semaphore that can be poll()'d
|
||
|
|
int efd_init();
|
||
|
|
void efd_write(int fd);
|
||
|
|
void efd_clear(int fd);
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif
|