Top | ![]() |
![]() |
![]() |
![]() |
uint32_t | syncobj_create () |
void | syncobj_destroy () |
int | syncobj_handle_to_fd () |
uint32_t | syncobj_fd_to_handle () |
void | syncobj_import_sync_file () |
int | syncobj_wait_err () |
bool | syncobj_wait () |
void | syncobj_reset () |
void | syncobj_signal () |
uint32_t syncobj_create (int fd
,uint32_t flags
);
Create a syncobj with the flags.
int syncobj_handle_to_fd (int fd
,uint32_t handle
,uint32_t flags
);
Convert a syncobj handle to an fd using the flags.
uint32_t syncobj_fd_to_handle (int fd
,int syncobj_fd
,uint32_t flags
);
Convert a syncobj fd a syncobj handle using the flags.
void syncobj_import_sync_file (int fd
,uint32_t handle
,int sync_file
);
Import a sync_file fd into a syncobj handle.
int syncobj_wait_err (int fd
,uint32_t *handles
,uint32_t count
,uint64_t abs_timeout_nsec
,uint32_t flags
);
bool syncobj_wait (int fd
,uint32_t *handles
,uint32_t count
,uint64_t abs_timeout_nsec
,uint32_t flags
,uint32_t *first_signaled
);
Waits in the kernel for any/all the requested syncobjs using the timeout and flags.
void syncobj_reset (int fd
,uint32_t *handles
,uint32_t count
);
Reset state of a set of syncobjs.