We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb7ce7d commit 542b7c6Copy full SHA for 542b7c6
src/backend/storage/ipc/ipc.c
@@ -8,7 +8,7 @@
8
*
9
10
* IDENTIFICATION
11
- * $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipc.c,v 1.58 2000/12/30 01:20:55 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipc.c,v 1.59 2001/01/07 04:30:41 tgl Exp $
12
13
* NOTES
14
@@ -126,6 +126,14 @@ proc_exit(int code)
126
*/
127
proc_exit_inprogress = true;
128
129
+ /*
130
+ * Forget any pending cancel or die requests; we're doing our best
131
+ * to close up shop already. Note that the signal handlers will not
132
+ * set these flags again, now that proc_exit_inprogress is set.
133
+ */
134
+ QueryCancel = false;
135
+ ProcDiePending = false;
136
+
137
if (DebugLvl > 1)
138
elog(DEBUG, "proc_exit(%d)", code);
139
0 commit comments