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

Function racct_move

freebsd/kern/kern_racct.c:1090–1100  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1088}
1089
1090void
1091racct_move(struct racct *dest, struct racct *src)
1092{
1093
1094 ASSERT_RACCT_ENABLED();
1095
1096 RACCT_LOCK();
1097 racct_add_racct(dest, src);
1098 racct_sub_racct(src, src);
1099 RACCT_UNLOCK();
1100}
1101
1102void
1103racct_proc_throttled(struct proc *p)

Callers 1

prison_racct_modifyFunction · 0.85

Calls 2

racct_add_racctFunction · 0.85
racct_sub_racctFunction · 0.85

Tested by

no test coverage detected