Home
last modified time | relevance | path

Searched refs:proc_id_array (Results 1 – 1 of 1) sorted by relevance

/freebsd/sys/kern/
H A Dkern_proc.c330 static bitstr_t *proc_id_array[] = { variable
341 KASSERT(type >= 0 && type < nitems(proc_id_array), in proc_id_set()
344 KASSERT(bit_test(proc_id_array[type], id) == 0, in proc_id_set()
346 bit_set(proc_id_array[type], id); in proc_id_set()
354 KASSERT(type >= 0 && type < nitems(proc_id_array), in proc_id_set_cond()
356 if (bit_test(proc_id_array[type], id)) in proc_id_set_cond()
359 bit_set(proc_id_array[type], id); in proc_id_set_cond()
367 KASSERT(type >= 0 && type < nitems(proc_id_array), in proc_id_clear()
370 KASSERT(bit_test(proc_id_array[type], id) != 0, in proc_id_clear()
372 bit_clear(proc_id_array[type], id); in proc_id_clear()