mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-18 22:13:51 +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 |