mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
Use pg_usleep() instead of plain sleep(), to fix Windows build
Per buildfarm.
This commit is contained in:
parent
ce9bb92f8f
commit
28475f8e58
@ -705,7 +705,7 @@ main(int argc, char **argv)
|
||||
break;
|
||||
else
|
||||
{
|
||||
sleep(1);
|
||||
pg_usleep(1000000L); /* 1 second */
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user