blob: 0e57cb47b2c6ecb9e8e17c5d4f0f89fac8deb2e4 (
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
|
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1997-2009 Oracle. All rights reserved.
*
* $Id$
*/
#include "db_config.h"
#include "db_int.h"
/*
* __os_fsync --
* Flush a file descriptor.
*/
int
__os_fsync(env, fhp)
ENV *env;
DB_FH *fhp;
{
DB_ENV *dbenv;
int ret;
dbenv = env == NULL ? NULL : env->dbenv;
/*
* Do nothing if the file descriptor has been marked as not requiring
* any sync to disk.
*/
if (F_ISSET(fhp, DB_FH_NOSYNC))
return (0);
if (dbenv != NULL && FLD_ISSET(dbenv->verbose, DB_VERB_FILEOPS_ALL))
__db_msg(env, "fileops: flush %s", fhp->name);
RETRY_CHK((!FlushFileBuffers(fhp->handle)), ret);
if (ret != 0) {
__db_syserr(env, ret, "FlushFileBuffers");
ret = __os_posix_err(ret);
}
return (ret);
}
|