mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
Spelling adjustments
This commit is contained in:
@ -618,7 +618,7 @@ pgwin32_select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, c
|
||||
if (r != WAIT_TIMEOUT && r != WAIT_IO_COMPLETION && r != (WAIT_OBJECT_0 + numevents))
|
||||
{
|
||||
/*
|
||||
* We scan all events, even those not signalled, in case more than one
|
||||
* We scan all events, even those not signaled, in case more than one
|
||||
* event has been tagged but Wait.. can only return one.
|
||||
*/
|
||||
WSANETWORKEVENTS resEvents;
|
||||
|
@ -48,7 +48,7 @@ pg_timer_thread(LPVOID param)
|
||||
r = WaitForSingleObjectEx(timerCommArea.event, waittime, FALSE);
|
||||
if (r == WAIT_OBJECT_0)
|
||||
{
|
||||
/* Event signalled from main thread, change the timer */
|
||||
/* Event signaled from main thread, change the timer */
|
||||
EnterCriticalSection(&timerCommArea.crit_sec);
|
||||
if (timerCommArea.value.it_value.tv_sec == 0 &&
|
||||
timerCommArea.value.it_value.tv_usec == 0)
|
||||
|
Reference in New Issue
Block a user