blob: 7a01b5cd61d2f9d77c3ba1fcf15157f3f0f21551 (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
/*-
* Copyright (c) 2014-2015 MongoDB, Inc.
* Copyright (c) 2008-2014 WiredTiger, Inc.
* All rights reserved.
*
* See the file LICENSE for redistribution information.
*/
#include "wt_internal.h"
/*
* __wt_directory_sync_fh --
* Flush a directory file handle.
*/
int
__wt_directory_sync_fh(WT_SESSION_IMPL *session, WT_FH *fh)
{
WT_UNUSED(session);
WT_UNUSED(fh);
return (0);
}
/*
* __wt_directory_sync --
* Flush a directory to ensure a file creation is durable.
*/
int
__wt_directory_sync(WT_SESSION_IMPL *session, char *path)
{
WT_UNUSED(session);
WT_UNUSED(path);
return (0);
}
/*
* __wt_fsync --
* Flush a file handle.
*/
int
__wt_fsync(WT_SESSION_IMPL *session, WT_FH *fh)
{
WT_DECL_RET;
WT_RET(__wt_verbose(session, WT_VERB_FILEOPS, "%s: FlushFileBuffers",
fh->name));
if ((ret = FlushFileBuffers(fh->filehandle)) == FALSE)
WT_RET_MSG(session,
__wt_errno(), "%s FlushFileBuffers error", fh->name);
return (0);
}
/*
* __wt_fsync_async --
* Flush a file handle and don't wait for the result.
*/
int
__wt_fsync_async(WT_SESSION_IMPL *session, WT_FH *fh)
{
WT_UNUSED(session);
WT_UNUSED(fh);
return (0);
}
|