Fix: syscall event rule: emission sites not compared in is_equal
[lttng-tools.git] / src / common / io-hint.hpp
CommitLineData
671e39d7
MJ
1/*
2 * Copyright (C) 2023 Michael Jeanson <mjeanson@efficios.com>
3 *
4 * SPDX-License-Identifier: LGPL-2.1-only
5 *
6 */
7
8#ifndef _LTTNG_IO_HINT_H
9#define _LTTNG_IO_HINT_H
10
4dfb0ef7
MJ
11#include <sys/types.h>
12
671e39d7
MJ
13namespace lttng {
14namespace io {
15
16void hint_flush_range_dont_need_sync(int fd, off_t offset, off_t nbytes);
17void hint_flush_range_sync(int fd, off_t offset, off_t nbytes);
18void hint_flush_range_async(int fd, off_t offset, off_t nbytes);
19
20} /* namespace io */
21} /* namespace lttng */
22
23#endif
This page took 0.032835 seconds and 4 git commands to generate.