diff options
Diffstat (limited to 'src/backend/port/win32_sema.c')
-rw-r--r-- | src/backend/port/win32_sema.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/backend/port/win32_sema.c b/src/backend/port/win32_sema.c index f848ff82b09..011e2fd4a6a 100644 --- a/src/backend/port/win32_sema.c +++ b/src/backend/port/win32_sema.c @@ -116,13 +116,11 @@ PGSemaphoreReset(PGSemaphore sema) * Serve the interrupt if interruptOK is true. */ void -PGSemaphoreLock(PGSemaphore sema, bool interruptOK) +PGSemaphoreLock(PGSemaphore sema) { HANDLE wh[2]; bool done = false; - ImmediateInterruptOK = interruptOK; - /* * Note: pgwin32_signal_event should be first to ensure that it will be * reported when multiple events are set. We want to guarantee that @@ -173,8 +171,6 @@ PGSemaphoreLock(PGSemaphore sema, bool interruptOK) break; } } - - ImmediateInterruptOK = false; } /* |