mirror of https://github.com/ArduPilot/ardupilot
11 lines
191 B
C
11 lines
191 B
C
|
|
||
|
/*
|
||
|
poll implementation for DDS
|
||
|
*/
|
||
|
|
||
|
struct pollfd {
|
||
|
int fd; /* file descriptor */
|
||
|
short events; /* requested events */
|
||
|
short revents; /* returned events */
|
||
|
};
|