diff options
| author | Tom Lane | 2001-01-14 05:08:17 +0000 |
|---|---|---|
| committer | Tom Lane | 2001-01-14 05:08:17 +0000 |
| commit | 36839c192706f5abd75bdcb02b6a7cace14ce108 (patch) | |
| tree | 3022631b1208e1227684db86c12cbba7da15f611 /src/include/access | |
| parent | 027f144e390afa6f189270e8c2a2a56c0a88f646 (diff) | |
Restructure backend SIGINT/SIGTERM handling so that 'die' interrupts
are treated more like 'cancel' interrupts: the signal handler sets a
flag that is examined at well-defined spots, rather than trying to cope
with an interrupt that might happen anywhere. See pghackers discussion
of 1/12/01.
Diffstat (limited to 'src/include/access')
| -rw-r--r-- | src/include/access/xlog.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/include/access/xlog.h b/src/include/access/xlog.h index 7736ec92e87..47e14c3a827 100644 --- a/src/include/access/xlog.h +++ b/src/include/access/xlog.h @@ -3,7 +3,7 @@ * * PostgreSQL transaction log manager * - * $Header: /cvsroot/pgsql/src/include/access/xlog.h,v 1.16 2001/01/12 21:54:01 tgl Exp $ + * $Header: /cvsroot/pgsql/src/include/access/xlog.h,v 1.17 2001/01/14 05:08:16 tgl Exp $ */ #ifndef XLOG_H #define XLOG_H @@ -101,7 +101,6 @@ typedef XLogPageHeaderData *XLogPageHeader; extern StartUpID ThisStartUpID; /* current SUI */ extern bool InRecovery; extern XLogRecPtr MyLastRecPtr; -extern volatile uint32 CritSectionCount; typedef struct RmgrData { |
