| 1339 | }; |
| 1340 | |
| 1341 | static void |
| 1342 | racctd_init(void) |
| 1343 | { |
| 1344 | if (!racct_enable) |
| 1345 | return; |
| 1346 | |
| 1347 | kproc_start(&racctd_kp); |
| 1348 | } |
| 1349 | SYSINIT(racctd, SI_SUB_RACCTD, SI_ORDER_FIRST, racctd_init, NULL); |
| 1350 | |
| 1351 | static void |
nothing calls this directly
no test coverage detected