thresholds 77 daemons/controld/controld_throttle.c const float thresholds[4]) thresholds 79 daemons/controld/controld_throttle.c if (load > thresholds[3]) { thresholds 83 daemons/controld/controld_throttle.c } else if (load > thresholds[2]) { thresholds 87 daemons/controld/controld_throttle.c } else if (load > thresholds[1]) { thresholds 91 daemons/controld/controld_throttle.c } else if (load > thresholds[0]) { thresholds 104 daemons/controld/controld_throttle.c float thresholds[4]; thresholds 114 daemons/controld/controld_throttle.c thresholds[0] = throttle_load_target * normalize * THROTTLE_FACTOR_LOW; thresholds 115 daemons/controld/controld_throttle.c thresholds[1] = throttle_load_target * normalize * THROTTLE_FACTOR_MEDIUM; thresholds 116 daemons/controld/controld_throttle.c thresholds[2] = throttle_load_target * normalize * THROTTLE_FACTOR_HIGH; thresholds 117 daemons/controld/controld_throttle.c thresholds[3] = load + 1.0; /* never extreme */ thresholds 119 daemons/controld/controld_throttle.c return throttle_check_thresholds(load, desc, thresholds); thresholds 129 daemons/controld/controld_throttle.c float thresholds[4]; thresholds 151 daemons/controld/controld_throttle.c thresholds[0] = cib_max_cpu * 0.8; thresholds 152 daemons/controld/controld_throttle.c thresholds[1] = cib_max_cpu * 0.9; thresholds 153 daemons/controld/controld_throttle.c thresholds[2] = cib_max_cpu; thresholds 155 daemons/controld/controld_throttle.c thresholds[3] = cib_max_cpu * 1.5; thresholds 157 daemons/controld/controld_throttle.c mode = throttle_check_thresholds(load, "CIB load", thresholds);