summaryrefslogtreecommitdiffstats
path: root/src/pmdk/src/libpmem2/persist_windows.c
blob: a169d1df5f6722d11582f4c7de164bbe5d1f055c (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
// SPDX-License-Identifier: BSD-3-Clause
/* Copyright 2019-2020, Intel Corporation */

/*
 * persist_windows.c -- Windows-specific part of persist implementation
 */

#include <stdlib.h>
#include <windows.h>

#include "out.h"
#include "persist.h"
#include "pmem2_utils.h"

/*
 * pmem2_flush_file_buffers_os -- flush CPU and OS file caches for the given
 * range
 */
int
pmem2_flush_file_buffers_os(struct pmem2_map *map, const void *addr, size_t len,
		int autorestart)
{
	ASSERTeq(map->source.type, PMEM2_SOURCE_HANDLE);

	if (FlushViewOfFile(addr, len) == FALSE) {
		ERR("!!FlushViewOfFile");
		return pmem2_lasterror_to_err();
	}

	if (FlushFileBuffers(map->source.value.handle) == FALSE) {
		ERR("!!FlushFileBuffers");
		return pmem2_lasterror_to_err();
	}

	return 0;
}