blob: fc2316f6b72ed140807e35c3b00fdc52f52a1cef (
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
|
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2001,2007 Oracle. All rights reserved.
*
* $Id: rep.src,v 12.11 2007/05/17 15:15:50 bostic Exp $
*/
PREFIX __rep
DBPRIVATE
INCLUDE #include "db_int.h"
INCLUDE #include "dbinc/db_page.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 42
POINTER first_lsn DB_LSN * lu
ARG first_vers u_int32_t lu
ARG num_files u_int32_t lu
END
/*
* file info
*/
BEGIN_BUF fileinfo 42
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
|