/* This includes various utility functions which are missing otherwise * $XFree86: xc/programs/Xserver/hw/xfree86/os-support/qnx/qnx_utils.c,v 1.1.2.2 1999/07/23 13:42:39 hohndel Exp $ */ #ifdef HAVE_XORG_CONFIG_H #include #endif #include #include #include #include #include #include #include void usleep (unsigned long interval) { delay( interval/1000 ); } /* We have our own version of GetTimeInMillis, because the normal * version calls gettimeofday(), which seems to thrash ES... */ CARD32 GetTimeInMillis() { struct timespec tp; qnx_getclock(0, CLOCK_REALTIME, &tp); return((tp.tv_sec * 1000) + (tp.tv_nsec / 1000000)); }