oom.h 463 B

1234567891011121314151617181920
  1. #ifndef _UAPI__INCLUDE_LINUX_OOM_H
  2. #define _UAPI__INCLUDE_LINUX_OOM_H
  3. /*
  4. * /proc/<pid>/oom_score_adj set to OOM_SCORE_ADJ_MIN disables oom killing for
  5. * pid.
  6. */
  7. #define OOM_SCORE_ADJ_MIN (-1000)
  8. #define OOM_SCORE_ADJ_MAX 1000
  9. /*
  10. * /proc/<pid>/oom_adj set to -17 protects from the oom killer for legacy
  11. * purposes.
  12. */
  13. #define OOM_DISABLE (-17)
  14. /* inclusive */
  15. #define OOM_ADJUST_MIN (-16)
  16. #define OOM_ADJUST_MAX 15
  17. #endif /* _UAPI__INCLUDE_LINUX_OOM_H */