Searched refs:proc_id_array (Results 1 – 1 of 1) sorted by relevance
| /freebsd-13.1/sys/kern/ |
| H A D | kern_proc.c | 327 static bitstr_t *proc_id_array[] = { variable 338 KASSERT(type >= 0 && type < nitems(proc_id_array), in proc_id_set() 341 KASSERT(bit_test(proc_id_array[type], id) == 0, in proc_id_set() 343 bit_set(proc_id_array[type], id); in proc_id_set() 351 KASSERT(type >= 0 && type < nitems(proc_id_array), in proc_id_set_cond() 353 if (bit_test(proc_id_array[type], id)) in proc_id_set_cond() 356 bit_set(proc_id_array[type], id); in proc_id_set_cond() 364 KASSERT(type >= 0 && type < nitems(proc_id_array), in proc_id_clear() 367 KASSERT(bit_test(proc_id_array[type], id) != 0, in proc_id_clear() 369 bit_clear(proc_id_array[type], id); in proc_id_clear()
|