File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 42
42
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
43
43
* Portions Copyright (c) 1994, Regents of the University of California
44
44
*
45
- * $PostgreSQL: pgsql/src/backend/access/transam/multixact.c,v 1.6 2005/08/01 20:31:06 tgl Exp $
45
+ * $PostgreSQL: pgsql/src/backend/access/transam/multixact.c,v 1.7 2005/08/20 01:29:27 ishii Exp $
46
46
*
47
47
*-------------------------------------------------------------------------
48
48
*/
@@ -200,7 +200,6 @@ static MemoryContext MXactContext = NULL;
200
200
/* internal MultiXactId management */
201
201
static void MultiXactIdSetOldestVisible (void );
202
202
static MultiXactId CreateMultiXactId (int nxids , TransactionId * xids );
203
- static int GetMultiXactIdMembers (MultiXactId multi , TransactionId * * xids );
204
203
static void RecordNewMultiXact (MultiXactId multi , MultiXactOffset offset ,
205
204
int nxids , TransactionId * xids );
206
205
static MultiXactId GetNewMultiXactId (int nxids , MultiXactOffset * offset );
@@ -816,7 +815,7 @@ GetNewMultiXactId(int nxids, MultiXactOffset *offset)
816
815
* still running; in that case we have not actually looked them up, and
817
816
* *xids is not set.
818
817
*/
819
- static int
818
+ int
820
819
GetMultiXactIdMembers (MultiXactId multi , TransactionId * * xids )
821
820
{
822
821
int pageno ;
Original file line number Diff line number Diff line change 6
6
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
7
7
* Portions Copyright (c) 1994, Regents of the University of California
8
8
*
9
- * $PostgreSQL: pgsql/src/include/access/multixact.h,v 1.4 2005/08/01 20:31:13 tgl Exp $
9
+ * $PostgreSQL: pgsql/src/include/access/multixact.h,v 1.5 2005/08/20 01:29:16 ishii Exp $
10
10
*/
11
11
#ifndef MULTIXACT_H
12
12
#define MULTIXACT_H
@@ -44,6 +44,7 @@ extern bool MultiXactIdIsRunning(MultiXactId multi);
44
44
extern void MultiXactIdWait (MultiXactId multi );
45
45
extern bool ConditionalMultiXactIdWait (MultiXactId multi );
46
46
extern void MultiXactIdSetOldestMember (void );
47
+ extern int GetMultiXactIdMembers (MultiXactId multi , TransactionId * * xids );
47
48
48
49
extern void AtEOXact_MultiXact (void );
49
50
You can’t perform that action at this time.
0 commit comments