You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// OOMScoreMaxKillable is the maximum score keeping the process killable by the oom killer
32
-
constOOMScoreMaxKillable=-999
31
+
const (
32
+
// OOMScoreMaxKillable is the maximum score keeping the process killable by the oom killer
33
+
OOMScoreMaxKillable=-999
34
+
// OOMScoreAdjMax is from OOM_SCORE_ADJ_MAX https://github.com/torvalds/linux/blob/master/include/uapi/linux/oom.h
35
+
OOMScoreAdjMax=1000
36
+
)
33
37
34
38
// SetOOMScore sets the oom score for the provided pid
0 commit comments