Searched refs:proc_id_array (Results 1 – 1 of 1) sorted by relevance
/freebsd/sys/kern/ |
H A D | kern_proc.c | 329 static bitstr_t *proc_id_array[] = { variable 340 KASSERT(type >= 0 && type < nitems(proc_id_array), in proc_id_set() 343 KASSERT(bit_test(proc_id_array[type], id) == 0, in proc_id_set() 345 bit_set(proc_id_array[type], id); in proc_id_set() 353 KASSERT(type >= 0 && type < nitems(proc_id_array), in proc_id_set_cond() 355 if (bit_test(proc_id_array[type], id)) in proc_id_set_cond() 358 bit_set(proc_id_array[type], id); in proc_id_set_cond() 366 KASSERT(type >= 0 && type < nitems(proc_id_array), in proc_id_clear() 369 KASSERT(bit_test(proc_id_array[type], id) != 0, in proc_id_clear() 371 bit_clear(proc_id_array[type], id); in proc_id_clear()
|