]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/shared/varlink-io.systemd.Journal.c
man/run0: remove @ syntax for --machine=
[thirdparty/systemd.git] / src / shared / varlink-io.systemd.Journal.c
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2
3 #include "varlink-io.systemd.Journal.h"
4
5 static VARLINK_DEFINE_METHOD(Synchronize);
6 static VARLINK_DEFINE_METHOD(Rotate);
7 static VARLINK_DEFINE_METHOD(FlushToVar);
8 static VARLINK_DEFINE_METHOD(RelinquishVar);
9
10 static VARLINK_DEFINE_ERROR(NotSupportedByNamespaces);
11
12 VARLINK_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);