diff options
author | Ronny Chevalier <chevalier.ronny@gmail.com> | 2016-06-23 13:11:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-23 13:11:58 +0100 |
commit | 48a97bb4dc82e8994b8416c6b9f95fb59c495015 (patch) | |
tree | 0ae3dd7c6b0197b960a3b2e5ff93db59d6643ab0 /src/core/execute.h | |
parent | 2bb6c19f5246df3b89ced17217458140921510ed (diff) | |
parent | f4170c671b863a211056972a469abd416086f22c (diff) |
Merge pull request #3583 from poettering/restrict-realtime
add new RestrictRealtime= option to services (and other fixes)
Diffstat (limited to 'src/core/execute.h')
-rw-r--r-- | src/core/execute.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/execute.h b/src/core/execute.h index cd1f7b36f6..210eea0e82 100644 --- a/src/core/execute.h +++ b/src/core/execute.h @@ -193,12 +193,14 @@ struct ExecContext { char **runtime_directory; mode_t runtime_directory_mode; + bool memory_deny_write_execute; + bool restrict_realtime; + bool oom_score_adjust_set:1; bool nice_set:1; bool ioprio_set:1; bool cpu_sched_set:1; bool no_new_privileges_set:1; - bool memory_deny_write_execute; }; #include "cgroup-util.h" |