| 77 | LIST_HEAD(se_head, sleep_entry); |
| 78 | |
| 79 | static void |
| 80 | synch_setup(void *arg) |
| 81 | { |
| 82 | mtx_init(&synch_lock, "synch_lock", NULL, MTX_DEF); |
| 83 | se_active = hashinit(64, M_TEMP, &se_hashmask); |
| 84 | } |
| 85 | |
| 86 | int |
| 87 | _sleep(const void * _Nonnull chan, struct lock_object *lock, int priority, |