HomeSort by: relevance | last modified time | path
    Searched defs:timecounters (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/kern/
kern_tc.c 42 * https://papers.freebsd.org/2002/phk-timecounters.files/timecounter.pdf
139 static struct timecounter *timecounters = &dummy_timecounter; variable in typeref:struct:timecounter
304 for (newtc = timecounters; newtc != NULL; newtc = newtc->tc_next) {
341 for (tc = timecounters; error == 0 && tc != NULL; tc = tc->tc_next) {
732 tc->tc_next = timecounters;
733 timecounters = tc;
761 for (best = tc = timecounters; tc != NULL; tc = tc->tc_next) {
788 * Stop using a timecounter and remove it from the timecounters list.
800 for (tcp = &timecounters, tc = timecounters;
    [all...]
kern_tc.c 42 * https://papers.freebsd.org/2002/phk-timecounters.files/timecounter.pdf
139 static struct timecounter *timecounters = &dummy_timecounter; variable in typeref:struct:timecounter
304 for (newtc = timecounters; newtc != NULL; newtc = newtc->tc_next) {
341 for (tc = timecounters; error == 0 && tc != NULL; tc = tc->tc_next) {
732 tc->tc_next = timecounters;
733 timecounters = tc;
761 for (best = tc = timecounters; tc != NULL; tc = tc->tc_next) {
788 * Stop using a timecounter and remove it from the timecounters list.
800 for (tcp = &timecounters, tc = timecounters;
    [all...]

Completed in 52 milliseconds