blob: 9c8e33d697cce033196c2b881bf6fa210c765b94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2008-2011 WiredTiger, Inc.
* All rights reserved.
*/
#include "wt_internal.h"
/*
* __wt_btree_sync --
* Flush pages to the backing file.
*/
int
__wt_btree_sync(SESSION *session, uint32_t flags)
{
WT_UNUSED(flags);
return (__wt_bt_sync(session));
}
|