blob: d1b207f5b3b522af468c39282961b5e66cc476f9 (
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
45
46
47
48
|
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2001-2005
* Sleepycat Software. All rights reserved.
*
* $Id: rep.src,v 12.3 2005/10/27 13:27:03 bostic Exp $
*/
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
ARG num_files u_int32_t lu
END
/*
* file info
*/
BEGIN_BUF fileinfo
ARG pgsize u_int32_t lu
ARG pgno db_pgno_t lu
ARG max_pgno db_pgno_t lu
ARG filenum u_int32_t lu
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
|