Searched refs:proc_id_array (Results 1 – 1 of 1) sorted by relevance
| /freebsd/sys/kern/ |
| H A D | kern_proc.c | 328 static bitstr_t *proc_id_array[] = { variable 339 KASSERT(type >= 0 && type < nitems(proc_id_array), in proc_id_set() 342 KASSERT(bit_test(proc_id_array[type], id) == 0, in proc_id_set() 344 bit_set(proc_id_array[type], id); in proc_id_set() 352 KASSERT(type >= 0 && type < nitems(proc_id_array), in proc_id_set_cond() 354 if (bit_test(proc_id_array[type], id)) in proc_id_set_cond() 357 bit_set(proc_id_array[type], id); in proc_id_set_cond() 365 KASSERT(type >= 0 && type < nitems(proc_id_array), in proc_id_clear() 368 KASSERT(bit_test(proc_id_array[type], id) != 0, in proc_id_clear() 370 bit_clear(proc_id_array[type], id); in proc_id_clear()
|