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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
191 B
C
Raw Normal View History

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