diff options
author | Hiroshi Inoue <inoue@tpf.co.jp> | 2000-02-21 02:42:37 +0000 |
---|---|---|
committer | Hiroshi Inoue <inoue@tpf.co.jp> | 2000-02-21 02:42:37 +0000 |
commit | a60c9e33e96a8f3694d94143d65ec6ee1fb3414b (patch) | |
tree | 14ea5349c66e1892a53b517bd64859d90a09e61e /src/include/miscadmin.h | |
parent | 320d3e06ee5b893c52b25ebd65a3ade4735c29e6 (diff) | |
download | postgresql-a60c9e33e96a8f3694d94143d65ec6ee1fb3414b.tar.gz postgresql-a60c9e33e96a8f3694d94143d65ec6ee1fb3414b.zip |
fix the TODO
* Allow PQrequestCancel() to terminate when in waiting-for-lock state
Changes are limited to BACKEND,however.
Diffstat (limited to 'src/include/miscadmin.h')
-rw-r--r-- | src/include/miscadmin.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/miscadmin.h b/src/include/miscadmin.h index df3de38611b..c80e7608333 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.51 2000/02/18 09:29:06 inoue Exp $ + * $Id: miscadmin.h,v 1.52 2000/02/21 02:42:37 inoue Exp $ * * NOTES * some of the information in this file will be moved to @@ -214,6 +214,7 @@ extern ProcessingMode Mode; extern void IgnoreSystemIndexes(bool mode); extern bool IsIgnoringSystemIndexes(void); extern bool IsCacheInitialized(void); +extern void SetLockWaiting(bool); /* * "postmaster.pid" is a file containing postmaster's pid, being |