2018-08-19 07:58:43 +02:00
|
|
|
// Matrix Construct
|
|
|
|
//
|
|
|
|
// Copyright (C) Matrix Construct Developers, Authors & Contributors
|
|
|
|
// Copyright (C) 2016-2018 Jason Volk <jason@zemos.net>
|
|
|
|
//
|
|
|
|
// Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
|
|
// copyright notice and this permission notice is present in all copies. The
|
|
|
|
// full license for this software is available in the LICENSE file.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#define HAVE_IRCD_FS_FSYNC_H
|
|
|
|
|
|
|
|
namespace ircd::fs
|
|
|
|
{
|
|
|
|
struct fsync_opts extern const fsync_opts_default;
|
|
|
|
|
|
|
|
void fdsync(const fd &, const fsync_opts & = fsync_opts_default);
|
|
|
|
void fsync(const fd &, const fsync_opts & = fsync_opts_default);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Options for a write operation
|
|
|
|
struct ircd::fs::fsync_opts
|
|
|
|
{
|
|
|
|
fsync_opts() = default;
|
|
|
|
|
2018-11-29 19:18:43 +01:00
|
|
|
/// Determines whether this operation is conducted via AIO. If not, a
|
|
|
|
/// direct syscall is made. Using AIO will only block one ircd::ctx while
|
|
|
|
/// a direct syscall will block the thread (all contexts). If AIO is not
|
|
|
|
/// available or enabled setting this has no effect.
|
2018-12-02 01:06:33 +01:00
|
|
|
bool async {true};
|
2018-11-29 19:18:43 +01:00
|
|
|
|
2018-11-02 04:15:12 +01:00
|
|
|
/// Request priority. This value is ignored by the kernel for the
|
|
|
|
/// operations provided by this interface. It is still provided for
|
|
|
|
/// consistency and may be used internally by IRCd in the future.
|
|
|
|
int8_t priority {-1};
|
2018-08-19 07:58:43 +02:00
|
|
|
};
|