X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=src%2Fphp_http_misc.c;fp=src%2Fphp_http_misc.c;h=36e3490a12a04d2fadaf4de1016538aea3013a3f;hp=23fb4b553ea28d35bbf51d86768386bbe2a11bff;hb=592c25cc9ea0b72843c2c2de84bd144e00a3231c;hpb=01751b935246b4483a50cbfca959de221e353085 diff --git a/src/php_http_misc.c b/src/php_http_misc.c index 23fb4b5..36e3490 100644 --- a/src/php_http_misc.c +++ b/src/php_http_misc.c @@ -19,11 +19,11 @@ void php_http_sleep(double s) { -#if defined(PHP_WIN32) +#if PHP_WIN32 Sleep((DWORD) PHP_HTTP_MSEC(s)); -#elif defined(HAVE_USLEEP) +#elif HAVE_USLEEP usleep(PHP_HTTP_USEC(s)); -#elif defined(HAVE_NANOSLEEP) +#elif HAVE_NANOSLEEP struct timespec req, rem; req.tv_sec = (time_t) s;