diff options
Diffstat (limited to 'src/include/access/multixact.h')
-rw-r--r-- | src/include/access/multixact.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/include/access/multixact.h b/src/include/access/multixact.h index 02f2d601c50..feee079fd0c 100644 --- a/src/include/access/multixact.h +++ b/src/include/access/multixact.h @@ -6,7 +6,7 @@ * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/access/multixact.h,v 1.7 2005/10/15 02:49:42 momjian Exp $ + * $PostgreSQL: pgsql/src/include/access/multixact.h,v 1.8 2005/12/06 23:08:34 tgl Exp $ */ #ifndef MULTIXACT_H #define MULTIXACT_H @@ -18,6 +18,10 @@ #define MultiXactIdIsValid(multi) ((multi) != InvalidMultiXactId) +/* Number of SLRU buffers to use for multixact */ +#define NUM_MXACTOFFSET_BUFFERS 8 +#define NUM_MXACTMEMBER_BUFFERS 16 + /* ---------------- * multixact-related XLOG entries * ---------------- |