From daf71ef61ce0d60f378e20169fb8ab252f54d104 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 7 Oct 2020 11:27:56 +0200 Subject: systemctl: split up humungous systemctl.c file This is just some refactoring: shifting around of code, not change in codeflow. This splits up the way too huge systemctl.c in multiple more easily digestable files. It roughly follows the rule that each family of verbs gets its own .c/.h file pair, and so do all the compat executable names we support. Plus three extra files for sysv compat (which existed before already, but I renamed slightly, to get the systemctl- prefix lik everything else), a -util file with generic stuff everything uses, and a -logind file with everything that talks directly to logind instead of PID1. systemctl is still a bit too complex for my taste, but I think this way itc omes in a more digestable bits at least. No change of behaviour, just reshuffling of some code. --- src/systemctl/systemctl-cancel-job.h | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 src/systemctl/systemctl-cancel-job.h (limited to 'src/systemctl/systemctl-cancel-job.h') diff --git a/src/systemctl/systemctl-cancel-job.h b/src/systemctl/systemctl-cancel-job.h new file mode 100644 index 0000000000..f337beac46 --- /dev/null +++ b/src/systemctl/systemctl-cancel-job.h @@ -0,0 +1,4 @@ +/* SPDX-License-Identifier: LGPL-2.1+ */ +#pragma once + +int cancel_job(int argc, char *argv[], void *userdata); -- cgit v1.2.1