mariadb/storage/bdb/rep/rep.src
2005-12-05 10:27:46 -08:00

48 lines
940 B
Text

/*-
* 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