0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-06 10:38:37 +02:00
construct/include/ircd/fs/sync.h
2018-12-13 16:54:09 -08:00

39 lines
1.3 KiB
C++

// 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_SYNC_H
namespace ircd::fs
{
struct sync_opts extern const sync_opts_default;
void fdsync(const fd &, const sync_opts & = sync_opts_default);
void fsync(const fd &, const sync_opts & = sync_opts_default);
void sync(const fd &, const sync_opts & = sync_opts_default);
}
/// Options for a write operation
struct ircd::fs::sync_opts
{
sync_opts() = default;
/// 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.
bool synchronous {false};
/// 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};
};