diff options
author | nork <nork@FreeBSD.org> | 2003-06-02 11:55:39 +0800 |
---|---|---|
committer | nork <nork@FreeBSD.org> | 2003-06-02 11:55:39 +0800 |
commit | 4e9d70cca384aaf2c2363f072e2244cd41c869e4 (patch) | |
tree | 1deb625f94e293a4defa74a9cfab59801c0e4fb9 /databases/postgresql73 | |
parent | 2781763f5c5a1359deb57cd6f83733b3a330d7dd (diff) | |
download | freebsd-ports-gnome-4e9d70cca384aaf2c2363f072e2244cd41c869e4.tar.gz freebsd-ports-gnome-4e9d70cca384aaf2c2363f072e2244cd41c869e4.tar.zst freebsd-ports-gnome-4e9d70cca384aaf2c2363f072e2244cd41c869e4.zip |
Remove a patch file which is no need for 7.3.3.
Submitted by: Mike Harding <mvh@ix.netcom.com>
Diffstat (limited to 'databases/postgresql73')
-rw-r--r-- | databases/postgresql73/files/patch-src::backend::commands::async.c | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/databases/postgresql73/files/patch-src::backend::commands::async.c b/databases/postgresql73/files/patch-src::backend::commands::async.c deleted file mode 100644 index 78eea1eae01c..000000000000 --- a/databases/postgresql73/files/patch-src::backend::commands::async.c +++ /dev/null @@ -1,38 +0,0 @@ -*** src/backend/commands/async.c.orig Sun Sep 15 21:24:41 2002 ---- src/backend/commands/async.c Mon Feb 17 21:38:47 2003 -*************** -*** 599,604 **** ---- 599,614 ---- - - if (notifyInterruptEnabled) - { -+ bool save_ImmediateInterruptOK = ImmediateInterruptOK; -+ -+ /* -+ * We may be called while ImmediateInterruptOK is true; turn it off -+ * while messing with the NOTIFY state. (We would have to save -+ * and restore it anyway, because PGSemaphore operations inside -+ * ProcessIncomingNotify() might reset it.) -+ */ -+ ImmediateInterruptOK = false; -+ - /* - * I'm not sure whether some flavors of Unix might allow another - * SIGUSR2 occurrence to recursively interrupt this routine. To -*************** -*** 626,631 **** ---- 636,648 ---- - elog(LOG, "Async_NotifyHandler: done"); - } - } -+ -+ /* -+ * Restore ImmediateInterruptOK, and check for interrupts if needed. -+ */ -+ ImmediateInterruptOK = save_ImmediateInterruptOK; -+ if (save_ImmediateInterruptOK) -+ CHECK_FOR_INTERRUPTS(); - } - else - { - |