rep.src 940 Bytes
Newer Older
jimw@mysql.com's avatar
jimw@mysql.com committed
1 2 3
/*-
 * See the file LICENSE for redistribution information.
 *
jimw@mysql.com's avatar
jimw@mysql.com committed
4
 * Copyright (c) 2001-2005
jimw@mysql.com's avatar
jimw@mysql.com committed
5 6
 *      Sleepycat Software.  All rights reserved.
 *
jimw@mysql.com's avatar
jimw@mysql.com committed
7
 * $Id: rep.src,v 12.3 2005/10/27 13:27:03 bostic Exp $
jimw@mysql.com's avatar
jimw@mysql.com committed
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
 */

PREFIX  __rep
DBPRIVATE

INCLUDE #ifndef NO_SYSTEM_INCLUDES
INCLUDE #include <stdlib.h>
INCLUDE #include <string.h>
INCLUDE #endif
INCLUDE
INCLUDE #include "db_int.h"
INCLUDE #include "dbinc/db_page.h"
INCLUDE #include "dbinc/db_shash.h"
INCLUDE #include "dbinc/db_am.h"
INCLUDE #include "dbinc/log.h"
INCLUDE #include "dbinc/mp.h"
INCLUDE #include "dbinc/txn.h"
INCLUDE

/*
 * update - send update information
 */
BEGIN_BUF update
POINTER	first_lsn	DB_LSN *	lu
jimw@mysql.com's avatar
jimw@mysql.com committed
32
ARG	num_files	u_int32_t	lu
jimw@mysql.com's avatar
jimw@mysql.com committed
33 34 35 36 37 38
END

/*
 * file info
 */
BEGIN_BUF fileinfo
jimw@mysql.com's avatar
jimw@mysql.com committed
39
ARG	pgsize		u_int32_t	lu
jimw@mysql.com's avatar
jimw@mysql.com committed
40 41
ARG	pgno		db_pgno_t	lu
ARG	max_pgno	db_pgno_t	lu
jimw@mysql.com's avatar
jimw@mysql.com committed
42
ARG	filenum		u_int32_t	lu
jimw@mysql.com's avatar
jimw@mysql.com committed
43 44 45 46 47 48
ARG	id		int32_t		d
ARG	type		u_int32_t	lu
ARG	flags		u_int32_t	lu
DBT	uid		DBT		s
DBT	info		DBT		s
END