ardupilot/libraries/AP_HAL_ChibiOS/hwdef/common/poll.h

11 lines
191 B
C

/*
poll implementation for DDS
*/
struct pollfd {
int fd; /* file descriptor */
short events; /* requested events */
short revents; /* returned events */
};