Home
last modified time | relevance | path

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

/f-stack/freebsd/kern/
H A Dsubr_lock.c574 head = &curthread->td_lprof[spin]; in lock_profile_object_lookup()
653 LIST_FOREACH(l, &td->td_lprof[0], lpo_link) in lock_profile_thread_exit()
656 LIST_FOREACH(l, &td->td_lprof[1], lpo_link) in lock_profile_thread_exit()
660 MPASS(LIST_FIRST(&td->td_lprof[0]) == NULL); in lock_profile_thread_exit()
661 MPASS(LIST_FIRST(&td->td_lprof[1]) == NULL); in lock_profile_thread_exit()
679 head = &curthread->td_lprof[spin]; in lock_profile_release_lock()
H A Dkern_thread.c1001 LIST_INIT(&td->td_lprof[0]); in thread_link()
1002 LIST_INIT(&td->td_lprof[1]); in thread_link()
/f-stack/freebsd/sys/
H A Dproc.h364 struct lpohead td_lprof[2]; /* (a) lock profiling objects. */ member