| 30 | #include <sys/mman.h> |
| 31 | |
| 32 | static int xioctl(int fd, int op, void *arg) { |
| 33 | int r; |
| 34 | do { |
| 35 | r = ioctl(fd, op, arg); |
| 36 | } while (-1 == r && EINTR == errno); |
| 37 | return r; |
| 38 | } |
| 39 | |
| 40 | typedef struct CameraBufferRecord CameraBufferRecord; |
| 41 | typedef struct CameraBufferRecord *CameraBuffer; |
no outgoing calls
no test coverage detected