MCPcopy Create free account
hub / github.com/F-Stack/f-stack / racct_proc_wakeup

Function racct_proc_wakeup

freebsd/kern/kern_racct.c:1179–1191  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1177}
1178
1179static void
1180racct_proc_wakeup(struct proc *p)
1181{
1182
1183 ASSERT_RACCT_ENABLED();
1184
1185 PROC_LOCK_ASSERT(p, MA_OWNED);
1186
1187 if (p->p_throttled != 0) {
1188 p->p_throttled = 0;
1189 wakeup(p->p_racct);
1190 }
1191}
1192
1193static void
1194racct_decay_callback(struct racct *racct, void *dummy1, void *dummy2)

Callers 1

racctdFunction · 0.85

Calls 1

wakeupFunction · 0.70

Tested by

no test coverage detected