eventpair_create - create an event pair
#include <magenta/syscalls.h>
mx_status_t mx_eventpair_create(uint32_t options, mx_handle_t* out0, mx_handle_t* out1);
eventpair_create() creates an event pair, which is a pair of objects that are mutually signalable.
The signals MX_EPAIR_SIGNALED and MX_USER_SIGNAL_n (where n is 0 through 7) may be set or cleared using object_signal() (modifying the signals on the object itself), or object_signal_peer() (modifying the signals on its counterpart).
When all the handles to one of the objects have been closed, the MX_EPAIR_PEER_CLOSED signal will be asserted on the opposing object.
The newly-created handles will have the MX_RIGHT_TRANSFER, MX_RIGHT_DUPLICATE, MX_RIGHT_READ, MX_RIGHT_WRITE, MX_RIGHT_SIGNAL, and MX_RIGHT_SIGNAL_PEER rights.
Currently, no options are supported, so options must be set to 0.
eventpair_create() returns MX_OK on success. On failure, a (negative) error code is returned.
MX_ERR_INVALID_ARGS out0 or out1 is an invalid pointer or NULL.
MX_ERR_NOT_SUPPORTED options has an unsupported flag set (i.e., is not 0).
MX_ERR_NO_MEMORY (Temporary) Failure due to lack of memory.
event_create, handle_close, handle_duplicate, object_wait_one, object_wait_many, handle_replace, object_signal, object_signal_peer.