Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit b41aa39

Browse files
committed
TransactionIdIsInProgress moved to shmem.c
1 parent f0c5a6c commit b41aa39

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/include/access/transam.h

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*
77
* Copyright (c) 1994, Regents of the University of California
88
*
9-
* $Id: transam.h,v 1.5 1996/11/10 03:04:41 momjian Exp $
9+
* $Id: transam.h,v 1.6 1996/11/27 07:30:28 vadim Exp $
1010
*
1111
* NOTES
1212
* Transaction System Version 101 now support proper oid
@@ -150,7 +150,6 @@ extern void TransRecover(Relation logRelation);
150150
extern void InitializeTransactionLog(void);
151151
extern bool TransactionIdDidCommit(TransactionId transactionId);
152152
extern bool TransactionIdDidAbort(TransactionId transactionId);
153-
extern bool TransactionIdIsInProgress(TransactionId transactionId);
154153
extern void TransactionIdCommit(TransactionId transactionId);
155154
extern void TransactionIdAbort(TransactionId transactionId);
156155
extern void TransactionIdSetInProgress(TransactionId transactionId);

src/include/storage/shmem.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*
77
* Copyright (c) 1994, Regents of the University of California
88
*
9-
* $Id: shmem.h,v 1.3 1996/11/10 03:05:56 momjian Exp $
9+
* $Id: shmem.h,v 1.4 1996/11/27 07:32:10 vadim Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
@@ -68,6 +68,7 @@ extern bool ShmemPIDLookup(int pid, SHMEM_OFFSET* locationPtr);
6868
extern SHMEM_OFFSET ShmemPIDDestroy(int pid);
6969
extern long *ShmemInitStruct(char *name, unsigned long size,
7070
bool *foundPtr);
71+
extern bool TransactionIdIsInProgress (TransactionId xid);
7172

7273

7374
typedef int TableID;

0 commit comments

Comments
 (0)