diff options
author | Martin Pitt <martin.pitt@ubuntu.com> | 2016-07-22 09:10:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-22 09:10:04 +0200 |
commit | 5c3c778014f4c59dd97f31ca5ab2e7374f08bbf6 (patch) | |
tree | e6df4d9329c86dbc7c0905e9f138696457f7fe47 /src/core/execute.h | |
parent | 31d28eabc10967daf06ae6ac4959a59556f1e7ff (diff) | |
parent | c0f81393d137a258a5c255755c08b498860a5241 (diff) |
Merge pull request #3764 from poettering/assorted-stuff-2
Assorted fixes
Diffstat (limited to 'src/core/execute.h')
-rw-r--r-- | src/core/execute.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/execute.h b/src/core/execute.h index 73b8a119b0..189c4d0999 100644 --- a/src/core/execute.h +++ b/src/core/execute.h @@ -30,6 +30,7 @@ typedef struct ExecParameters ExecParameters; #include <stdio.h> #include <sys/capability.h> +#include "cgroup-util.h" #include "fdset.h" #include "list.h" #include "missing.h" @@ -203,9 +204,6 @@ struct ExecContext { bool no_new_privileges_set:1; }; -#include "cgroup-util.h" -#include "cgroup.h" - struct ExecParameters { char **argv; char **environment; @@ -236,6 +234,8 @@ struct ExecParameters { int stderr_fd; }; +#include "unit.h" + int exec_spawn(Unit *unit, ExecCommand *command, const ExecContext *context, |