]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/core/exec-invoke.h
core: align table
[thirdparty/systemd.git] / src / core / exec-invoke.h
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2 #pragma once
3
4 typedef struct ExecCommand ExecCommand;
5 typedef struct ExecContext ExecContext;
6 typedef struct ExecParameters ExecParameters;
7 typedef struct ExecRuntime ExecRuntime;
8 typedef struct CGroupContext CGroupContext;
9
10 int exec_invoke(
11 const ExecCommand *command,
12 const ExecContext *context,
13 ExecParameters *params,
14 ExecRuntime *runtime,
15 const CGroupContext *cgroup_context,
16 int *exit_status);