mirror of
https://github.com/postgres/postgres.git
synced 2026-03-21 10:00:08 -04:00
Cleanup for commit dee663f7.
Reported-by: Tomas Vondra <tomas.vondra@enterprisedb.com>
Discussion: https://postgr.es/m/CA+hUKGLJ=84YT+NvhkEEDAuUtVHMfQ9i-N7k_o50JmQ6Rpj_OQ@mail.gmail.com
29 lines
923 B
C
29 lines
923 B
C
/*
|
|
* subtrans.h
|
|
*
|
|
* PostgreSQL subtransaction-log manager
|
|
*
|
|
* Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* src/include/access/subtrans.h
|
|
*/
|
|
#ifndef SUBTRANS_H
|
|
#define SUBTRANS_H
|
|
|
|
/* Number of SLRU buffers to use for subtrans */
|
|
#define NUM_SUBTRANS_BUFFERS 32
|
|
|
|
extern void SubTransSetParent(TransactionId xid, TransactionId parent);
|
|
extern TransactionId SubTransGetParent(TransactionId xid);
|
|
extern TransactionId SubTransGetTopmostTransaction(TransactionId xid);
|
|
|
|
extern Size SUBTRANSShmemSize(void);
|
|
extern void SUBTRANSShmemInit(void);
|
|
extern void BootStrapSUBTRANS(void);
|
|
extern void StartupSUBTRANS(TransactionId oldestActiveXID);
|
|
extern void CheckPointSUBTRANS(void);
|
|
extern void ExtendSUBTRANS(TransactionId newestXact);
|
|
extern void TruncateSUBTRANS(TransactionId oldestXact);
|
|
|
|
#endif /* SUBTRANS_H */
|