MCPcopy Create free account
hub / github.com/Moddable-OpenSource/moddable / xioctl

Function xioctl

modules/io/imagein/camera/lin/camera.c:32–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

30#include <sys/mman.h>
31
32static 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
40typedef struct CameraBufferRecord CameraBufferRecord;
41typedef struct CameraBufferRecord *CameraBuffer;

Callers 2

xs_camera_loopFunction · 0.85
xs_camera_constructorFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected