84d9c625bf
- Fix for possible unset uid/gid in toproto - Fix for default mtree style - Update libelf - Importing libexecinfo - Resynchronize GCC, mpc, gmp, mpfr - build.sh: Replace params with show-params. This has been done as the make target has been renamed in the same way, while a new target named params has been added. This new target generates a file containing all the parameters, instead of printing it on the console. - Update test48 with new etc/services (Fix by Ben Gras <ben@minix3.org) get getservbyport() out of the inner loop Change-Id: Ie6ad5226fa2621ff9f0dee8782ea48f9443d2091
40 lines
729 B
C
40 lines
729 B
C
/* Do not edit: automatically built by gen_rec.awk. */
|
|
|
|
#ifndef vi_AUTO_H
|
|
#define vi_AUTO_H
|
|
#define DB_vi_marker 200
|
|
typedef struct _vi_marker_args {
|
|
u_int32_t type;
|
|
DB_TXN *txnid;
|
|
DB_LSN prev_lsn;
|
|
u_int32_t opcode;
|
|
} __vi_marker_args;
|
|
|
|
#define DB_vi_cursor 201
|
|
typedef struct _vi_cursor_args {
|
|
u_int32_t type;
|
|
DB_TXN *txnid;
|
|
DB_LSN prev_lsn;
|
|
u_int32_t opcode;
|
|
db_recno_t lno;
|
|
size_t cno;
|
|
} __vi_cursor_args;
|
|
|
|
#define DB_vi_mark 202
|
|
typedef struct _vi_mark_args {
|
|
u_int32_t type;
|
|
DB_TXN *txnid;
|
|
DB_LSN prev_lsn;
|
|
LMARK lmp;
|
|
} __vi_mark_args;
|
|
|
|
#define DB_vi_change 203
|
|
typedef struct _vi_change_args {
|
|
u_int32_t type;
|
|
DB_TXN *txnid;
|
|
DB_LSN prev_lsn;
|
|
u_int32_t opcode;
|
|
db_recno_t lno;
|
|
} __vi_change_args;
|
|
|
|
#endif
|