Explorar el Código

Improve rounding in the internal Win32 sleep method.

tags/v0.99.beta17
Sam Hocevar sam hace 15 años
padre
commit
03584e4665
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. +3
    -3
      caca/time.c

+ 3
- 3
caca/time.c Ver fichero

@@ -38,11 +38,11 @@
void _caca_sleep(int usec)
{
#if defined(HAVE_USLEEP)
usleep(usec);
usleep(usec);
#elif defined(HAVE_SLEEP)
Sleep(usec / 1000);
Sleep((usec + 500) / 1000);
#else
/* SLEEP */
/* SLEEP */
#endif
}



Cargando…
Cancelar
Guardar