diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-08-31 01:33:39 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-08-31 01:33:43 +0200 |
commit | dd6c17b1595ff8a78ebae6cf571fd222c80bfd17 (patch) | |
tree | 1c3409f81d533008deeb3725b27b1f2de57e204a /src/execute.h | |
parent | 71916d3fff97c6026b5e8bb2c8e4169ab14dc3ad (diff) |
exec: replace OOMAdjust= by OOMScoreAdjust= to follow new kernel interface
This replaces OOMAdjust= by OOMScoreAdjust= in the config files,
breaking compatibility with older unit files. However, this keeps compat
with older kernels which lack the new OOM rework.
Diffstat (limited to 'src/execute.h')
-rw-r--r-- | src/execute.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/execute.h b/src/execute.h index 0dc5a1d252..31cce5d7d2 100644 --- a/src/execute.h +++ b/src/execute.h @@ -97,7 +97,7 @@ struct ExecContext { char *working_directory, *root_directory; mode_t umask; - int oom_adjust; + int oom_score_adjust; int nice; int ioprio; int cpu_sched_policy; @@ -153,7 +153,7 @@ struct ExecContext { * don't enter a trigger loop. */ bool same_pgrp; - bool oom_adjust_set:1; + bool oom_score_adjust_set:1; bool nice_set:1; bool ioprio_set:1; bool cpu_sched_set:1; |