blob: b9a7c41f49954ac695fc835c39d8d97a22e232c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/*-------------------------------------------------------------------------
*
* gtm_serialize_debug.h
*
*
* Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 2010-2012 Postgres-XC Development Group
*
* src/include/gtm/gtm_serialize_debug.h
*
*-------------------------------------------------------------------------
*/
#ifndef GTM_SERIALIZE_DEBUG_H
#define GTM_SERIALIZE_DEBUG_H
#include <sys/types.h>
#include "gtm/gtm_txn.h"
void dump_transactions_elog(GTM_Transactions *, int);
void dump_transactioninfo_elog(GTM_TransactionInfo *);
#endif /* GTM_SERIALIZE_DEBUG_H */
|