summaryrefslogtreecommitdiff
path: root/src/include/miscadmin.h
diff options
context:
space:
mode:
authorTom Lane2001-01-07 04:17:29 +0000
committerTom Lane2001-01-07 04:17:29 +0000
commitcb7ce7d0e30d208e612da634936dec0b53f78324 (patch)
tree6b71be46d27c458126ac1c4d87663f312401c405 /src/include/miscadmin.h
parent6781aa4707a807f8d6fb5f0d9f8522bde6d1f96a (diff)
Fix recent breakage of query-cancel logic, see my pghackers message
of 6 Jan 2001 21:55.
Diffstat (limited to 'src/include/miscadmin.h')
-rw-r--r--src/include/miscadmin.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/miscadmin.h b/src/include/miscadmin.h
index f41a01822ac..6b5dff9478a 100644
--- a/src/include/miscadmin.h
+++ b/src/include/miscadmin.h
@@ -12,7 +12,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: miscadmin.h,v 1.75 2000/11/29 20:59:54 tgl Exp $
+ * $Id: miscadmin.h,v 1.76 2001/01/07 04:17:28 tgl Exp $
*
* NOTES
* some of the information in this file will be moved to
@@ -42,7 +42,7 @@ extern int PostmasterMain(int argc, char *argv[]);
*/
extern bool Noversion;
extern bool Quiet;
-extern bool QueryCancel;
+extern volatile bool QueryCancel;
extern char *DataDir;
extern int MyProcPid;