diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-12-10 22:06:44 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-12-10 22:06:44 +0100 |
commit | 7b3fd6313c4b07b6f822a9f979d0c22350a401d9 (patch) | |
tree | 936f7fa948b9d5eb2e417204108353c13e6485a9 /src/core/execute.c | |
parent | 0cd385d31814c8c1bc0c81d11ef321036b8b0921 (diff) |
scope: make attachment of initial PIDs a bit more robust
Diffstat (limited to 'src/core/execute.c')
-rw-r--r-- | src/core/execute.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/execute.c b/src/core/execute.c index 955090c446..5e4135e030 100644 --- a/src/core/execute.c +++ b/src/core/execute.c @@ -1351,7 +1351,7 @@ static int exec_child(ExecCommand *command, } if (params->cgroup_path) { - err = cg_attach_everywhere(params->cgroup_supported, params->cgroup_path, 0); + err = cg_attach_everywhere(params->cgroup_supported, params->cgroup_path, 0, NULL, NULL); if (err < 0) { *error = EXIT_CGROUP; return err; |