summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorTatsuo Ishii2005-08-20 01:29:27 +0000
committerTatsuo Ishii2005-08-20 01:29:27 +0000
commitba2fc7eb4b922a4ed395b9d6b9a1401eef6a1c00 (patch)
tree61d7d9666ba72f0bef24a518d49bd9f7ee8ba835 /src/include
parentbc3991c1851d4fbbb8881640a8fd7dddf7d7b7ca (diff)
Make GetMultiXactIdMembers() a public function.
Diffstat (limited to 'src/include')
-rw-r--r--src/include/access/multixact.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/access/multixact.h b/src/include/access/multixact.h
index 8a4d2101e75..29cd44a76d5 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.4 2005/08/01 20:31:13 tgl Exp $
+ * $PostgreSQL: pgsql/src/include/access/multixact.h,v 1.5 2005/08/20 01:29:16 ishii Exp $
*/
#ifndef MULTIXACT_H
#define MULTIXACT_H
@@ -44,6 +44,7 @@ extern bool MultiXactIdIsRunning(MultiXactId multi);
extern void MultiXactIdWait(MultiXactId multi);
extern bool ConditionalMultiXactIdWait(MultiXactId multi);
extern void MultiXactIdSetOldestMember(void);
+extern int GetMultiXactIdMembers(MultiXactId multi, TransactionId **xids);
extern void AtEOXact_MultiXact(void);