Searched refs:proc_id_array (Results 1 – 1 of 1) sorted by relevance
| /f-stack/freebsd/kern/ |
| H A D | kern_proc.c | 323 static bitstr_t *proc_id_array[] = { variable 334 KASSERT(type >= 0 && type < nitems(proc_id_array), in proc_id_set() 337 KASSERT(bit_test(proc_id_array[type], id) == 0, in proc_id_set() 339 bit_set(proc_id_array[type], id); in proc_id_set() 347 KASSERT(type >= 0 && type < nitems(proc_id_array), in proc_id_set_cond() 349 if (bit_test(proc_id_array[type], id)) in proc_id_set_cond() 352 bit_set(proc_id_array[type], id); in proc_id_set_cond() 360 KASSERT(type >= 0 && type < nitems(proc_id_array), in proc_id_clear() 363 KASSERT(bit_test(proc_id_array[type], id) != 0, in proc_id_clear() 365 bit_clear(proc_id_array[type], id); in proc_id_clear()
|