~ubuntu-branches/ubuntu/precise/linux-lts-saucy/precise-proposed

« back to all changes in this revision

Viewing changes to include/uapi/linux/oom.h

  • Committer: Package Import Robot
  • Author(s): Tim Gardner
  • Date: 2013-10-09 13:31:18 UTC
  • Revision ID: package-import@ubuntu.com-20131009133118-l5q5o2hmtz96hefq
Tags: upstream-3.11.0
ImportĀ upstreamĀ versionĀ 3.11.0

Show diffs side-by-side

added added

removed removed

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