diff options
author | Lennart Poettering <lennart@poettering.net> | 2016-11-02 16:29:04 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-02 16:29:04 -0600 |
commit | 31887c73b998db2fe61292aa2b19a17d6cd5e494 (patch) | |
tree | f2713ccf12bfde6b35f0912923f44f43d0b75673 /src/core/unit.h | |
parent | 5b9635d16656090afa6c3aef52be469ff39fe247 (diff) | |
parent | b09246352f751c95ab06f598b639f6f6ca0e67b1 (diff) |
Merge pull request #4456 from keszybz/stored-fds
Preserve stored fds over service restart
Diffstat (limited to 'src/core/unit.h')
-rw-r--r-- | src/core/unit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/unit.h b/src/core/unit.h index adcdee6db6..e01ec7a775 100644 --- a/src/core/unit.h +++ b/src/core/unit.h @@ -372,7 +372,7 @@ struct UnitVTable { /* When the unit is not running and no job for it queued we * shall release its runtime resources */ - void (*release_resources)(Unit *u); + void (*release_resources)(Unit *u, bool inactive); /* Invoked on every child that died */ void (*sigchld_event)(Unit *u, pid_t pid, int code, int status); |