From d06995710bc7e347d39866c1793ae282498d65e0 Mon Sep 17 00:00:00 2001 From: Andres Freund Date: Tue, 3 Feb 2015 23:25:00 +0100 Subject: Remove the option to service interrupts during PGSemaphoreLock(). The remaining caller (lwlocks) doesn't need that facility, and we plan to remove ImmedidateInterruptOK entirely. That means that interrupts can't be serviced race-free and portably anyway, so there's little reason for keeping the feature. Reviewed-By: Heikki Linnakangas --- src/backend/port/win32_sema.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'src/backend/port/win32_sema.c') diff --git a/src/backend/port/win32_sema.c b/src/backend/port/win32_sema.c index f848ff82b0..011e2fd4a6 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; } /* -- cgit v1.2.1