-void
-os_reason_init(void)
-{
- int reasons_allocated = 0;
-
- /*
- * We pre-fill the OS reason zone to reduce the likelihood that
- * the jetsam thread and others block when they create an exit
- * reason.
- */
- reasons_allocated = zfill(os_reason_zone, OS_REASON_RESERVE_COUNT);
- assert(reasons_allocated >= OS_REASON_RESERVE_COUNT);
-}
-