summaryrefslogtreecommitdiff
path: root/src/repmgr/repmgr_autop.c
blob: 8d7c19746a5ed3efaae441ed0d097f18cbf3e1f0 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/* Do not edit: automatically built by gen_rec.awk. */

#include "db_config.h"

#ifdef HAVE_REPLICATION_THREADS
#include "db_int.h"
#include "dbinc/db_page.h"
#include "dbinc/db_dispatch.h"
#include "dbinc/db_am.h"
#include "dbinc_auto/repmgr_auto.h"

/*
 * PUBLIC: int __repmgr_member_print __P((ENV *, DBT *, DB_LSN *,
 * PUBLIC:     db_recops, void *));
 */
int
__repmgr_member_print(env, dbtp, lsnp, notused2, info)
	ENV *env;
	DBT *dbtp;
	DB_LSN *lsnp;
	db_recops notused2;
	void *info;
{
	COMPQUIET(notused2, DB_TXN_PRINT);

	return (__log_print_record(env, dbtp, lsnp, "__repmgr_member", __repmgr_member_desc, info));
}

/*
 * PUBLIC: int __repmgr_init_print __P((ENV *, DB_DISTAB *));
 */
int
__repmgr_init_print(env, dtabp)
	ENV *env;
	DB_DISTAB *dtabp;
{
	int ret;

	if ((ret = __db_add_recovery_int(env, dtabp,
	    __repmgr_member_print, DB___repmgr_member)) != 0)
		return (ret);
	return (0);
}
#endif /* HAVE_REPLICATION_THREADS */