]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/shared/varlink-io.systemd.Journal.c
hwdb: updated Librem 11 accelerometer (#32772)
[thirdparty/systemd.git] / src / shared / varlink-io.systemd.Journal.c
CommitLineData
abef4a7b
LP
1/* SPDX-License-Identifier: LGPL-2.1-or-later */
2
3#include "varlink-io.systemd.Journal.h"
4
5static VARLINK_DEFINE_METHOD(Synchronize);
6static VARLINK_DEFINE_METHOD(Rotate);
7static VARLINK_DEFINE_METHOD(FlushToVar);
8static VARLINK_DEFINE_METHOD(RelinquishVar);
9
10static VARLINK_DEFINE_ERROR(NotSupportedByNamespaces);
11
12VARLINK_DEFINE_INTERFACE(
13 io_systemd_Journal,
14 "io.systemd.Journal",
15 &vl_method_Synchronize,
16 &vl_method_Rotate,
17 &vl_method_FlushToVar,
18 &vl_method_RelinquishVar,
19 &vl_error_NotSupportedByNamespaces);