HomeSort by relevance Sort by last modified time
    Searched refs:_mysleep (Results 1 - 3 of 3) sorted by null

  /external/libvncserver/x11vnc/
util.h 77 fprintf(stderr, "_mysleep: %08d %10.6f %s:%d\n", (x), dnow() - x11vnc_start, __FILE__, __LINE__); \
81 extern struct timeval _mysleep;
83 _mysleep.tv_sec = (x) / 1000000; \
84 _mysleep.tv_usec = (x) % 1000000; \
85 select(0, NULL, NULL, NULL, &_mysleep);
util.c 41 struct timeval _mysleep; variable in typeref:struct:timeval
  /external/libvncserver/x11vnc/misc/
blockdpy.c 128 struct timeval _mysleep; variable in typeref:struct:timeval
130 _mysleep.tv_sec = ((x)*1000) / 1000000; \
131 _mysleep.tv_usec = ((x)*1000) % 1000000; \
132 select(0, NULL, NULL, NULL, &_mysleep);

Completed in 83 milliseconds