diff options
Diffstat (limited to 'src/include/access/clog.h')
| -rw-r--r-- | src/include/access/clog.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/include/access/clog.h b/src/include/access/clog.h index 4e44e8036c..9bcd3a4294 100644 --- a/src/include/access/clog.h +++ b/src/include/access/clog.h @@ -6,7 +6,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: clog.h,v 1.1 2001/08/25 18:52:42 tgl Exp $ + * $Id: clog.h,v 1.2 2001/09/29 04:02:26 tgl Exp $ */ #ifndef CLOG_H #define CLOG_H @@ -24,6 +24,9 @@ typedef int XidStatus; #define TRANSACTION_STATUS_ABORTED 0x02 /* 0x03 is available without changing commit log space allocation */ +/* exported because lwlock.c needs it */ +#define NUM_CLOG_BUFFERS 8 + extern void TransactionIdSetStatus(TransactionId xid, XidStatus status); extern XidStatus TransactionIdGetStatus(TransactionId xid); |
