usleep -> uv_sleep

This commit is contained in:
Bert Belder 2011-05-27 19:41:34 +02:00
parent 982a620f1c
commit d5b3ae0f58

View File

@ -77,7 +77,7 @@ int run_task(task_entry_t *test, int timeout, int benchmark_output) {
}
/* Wait a little bit to allow servers to start. Racy. */
usleep(50);
uv_sleep(50);
/* Start the main test process. */
if (process_start(test->process_name, &processes[process_count]) == -1) {