Update.
[glibc.git] / db2 / include / txn_auto.h
blobfd5a456115c0c8c87d108e71e1f1b13810dfb183
1 /* Do not edit: automatically built by dist/db_gen.sh. */
2 #ifndef txn_AUTO_H
3 #define txn_AUTO_H
5 #define DB_txn_regop (DB_txn_BEGIN + 1)
7 typedef struct _txn_regop_args {
8 u_int32_t type;
9 DB_TXN *txnid;
10 DB_LSN prev_lsn;
11 u_int32_t opcode;
12 } __txn_regop_args;
15 #define DB_txn_ckp (DB_txn_BEGIN + 2)
17 typedef struct _txn_ckp_args {
18 u_int32_t type;
19 DB_TXN *txnid;
20 DB_LSN prev_lsn;
21 DB_LSN ckp_lsn;
22 DB_LSN last_ckp;
23 } __txn_ckp_args;
25 #endif