gpiod_ctxless_event_loop_multiple

@brief Wait for events on multiple GPIO lines. @param device Name, path, number or label of the gpiochip. @param offsets Array of GPIO line offsets to monitor. @param num_lines Number of lines to monitor. @param active_low The active state of this line - true if low. @param consumer Name of the consumer. @param timeout Maximum wait time for each iteration. @param poll_cb Callback function to call when waiting for events. Can be NULL. @param event_cb Callback function to call on event occurrence. @param data User data passed to the callback. @return 0 no errors were encountered, -1 if an error occurred. @note The poll callback can be NULL in which case the routine will fall back to a basic, ppoll() based callback.

Internally this routine opens the GPIO chip, requests the set of lines for both-edges events and calls the polling callback in a loop. The role of the polling callback is to detect input events on a set of file descriptors and notify the caller about the fds ready for reading.

The ctxless event loop then reads each queued event from marked descriptors and calls the event callback. Both callbacks can stop the loop at any point.

The poll_cb argument can be NULL in which case the function falls back to a default, ppoll() based callback.

extern (C)
int
gpiod_ctxless_event_loop_multiple
(
const(char)* device
,
const(uint)* offsets
,,,
const(char)* consumer
,
const(timespec)* timeout
,,,
void* data
)

Meta