brintos

brintos / linux-shallow public Read only

0
0
Text · 526 B · 750b1c5 Raw
22 lines · c
1/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */2#ifndef _UAPI__INCLUDE_LINUX_OOM_H3#define _UAPI__INCLUDE_LINUX_OOM_H4 5/*6 * /proc/<pid>/oom_score_adj set to OOM_SCORE_ADJ_MIN disables oom killing for7 * pid.8 */9#define OOM_SCORE_ADJ_MIN	(-1000)10#define OOM_SCORE_ADJ_MAX	100011 12/*13 * /proc/<pid>/oom_adj set to -17 protects from the oom killer for legacy14 * purposes.15 */16#define OOM_DISABLE (-17)17/* inclusive */18#define OOM_ADJUST_MIN (-16)19#define OOM_ADJUST_MAX 1520 21#endif /* _UAPI__INCLUDE_LINUX_OOM_H */22