Home
last modified time | relevance | path

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

/freebsd/sys/kern/
H A Dsubr_lock.c560 head = &curthread->td_lprof[spin]; in lock_profile_object_lookup()
643 LIST_FOREACH(l, &td->td_lprof[0], lpo_link) in lock_profile_thread_exit()
646 LIST_FOREACH(l, &td->td_lprof[1], lpo_link) in lock_profile_thread_exit()
650 MPASS(LIST_FIRST(&td->td_lprof[0]) == NULL); in lock_profile_thread_exit()
651 MPASS(LIST_FIRST(&td->td_lprof[1]) == NULL); in lock_profile_thread_exit()
672 head = &curthread->td_lprof[spin]; in lock_profile_release_lock()
H A Dkern_thread.c1079 LIST_INIT(&td->td_lprof[0]); in thread_link()
1080 LIST_INIT(&td->td_lprof[1]); in thread_link()
/freebsd/sys/sys/
H A Dproc.h374 struct lpohead td_lprof[2]; /* (a) lock profiling objects. */ member