| 534 | } |
| 535 | |
| 536 | void |
| 537 | audit_worker_init(void) |
| 538 | { |
| 539 | int error; |
| 540 | |
| 541 | AUDIT_WORKER_LOCK_INIT(); |
| 542 | error = kproc_create(audit_worker, NULL, &audit_thread, RFHIGHPID, |
| 543 | 0, "audit"); |
| 544 | if (error) |
| 545 | panic("audit_worker_init: kproc_create returned %d", error); |
| 546 | } |
no test coverage detected