diff options
Diffstat (limited to 'src/shared/varlink-io.systemd.Journal.c')
-rw-r--r-- | src/shared/varlink-io.systemd.Journal.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/shared/varlink-io.systemd.Journal.c b/src/shared/varlink-io.systemd.Journal.c new file mode 100644 index 0000000..b93fb72 --- /dev/null +++ b/src/shared/varlink-io.systemd.Journal.c @@ -0,0 +1,19 @@ +/* SPDX-License-Identifier: LGPL-2.1-or-later */ + +#include "varlink-io.systemd.Journal.h" + +static VARLINK_DEFINE_METHOD(Synchronize); +static VARLINK_DEFINE_METHOD(Rotate); +static VARLINK_DEFINE_METHOD(FlushToVar); +static VARLINK_DEFINE_METHOD(RelinquishVar); + +static VARLINK_DEFINE_ERROR(NotSupportedByNamespaces); + +VARLINK_DEFINE_INTERFACE( + io_systemd_Journal, + "io.systemd.Journal", + &vl_method_Synchronize, + &vl_method_Rotate, + &vl_method_FlushToVar, + &vl_method_RelinquishVar, + &vl_error_NotSupportedByNamespaces); |