mirror of
https://github.com/postgres/postgres.git
synced 2025-06-14 18:42:34 +03:00
Use pg_usleep() instead of plain sleep(), to fix Windows build
Per buildfarm.
This commit is contained in:
@ -705,7 +705,7 @@ main(int argc, char **argv)
|
|||||||
break;
|
break;
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
sleep(1);
|
pg_usleep(1000000L); /* 1 second */
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user