mirror of https://github.com/yandex/odyssey.git
29 lines
459 B
C
29 lines
459 B
C
|
|
/*
|
|
* machinarium.
|
|
*
|
|
* cooperative multitasking engine.
|
|
*/
|
|
|
|
#include <machinarium.h>
|
|
#include <machinarium_private.h>
|
|
|
|
MACHINE_API int machine_eventfd(machine_io_t *obj)
|
|
{
|
|
mm_io_t *io = mm_cast(mm_io_t *, obj);
|
|
mm_errno_set(0);
|
|
if (io->connected) {
|
|
mm_errno_set(EINPROGRESS);
|
|
return -1;
|
|
}
|
|
int rc;
|
|
rc = mm_socket_eventfd(0);
|
|
if (rc == -1)
|
|
return -1;
|
|
io->fd = rc;
|
|
io->handle.fd = io->fd;
|
|
io->is_eventfd = 1;
|
|
io->connected = 1;
|
|
return 0;
|
|
}
|