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
138 static struct timecounter *timecounters = &dummy_timecounter; variable in typeref:struct:timecounter *
303 for (newtc = timecounters; newtc != NULL; newtc = newtc->tc_next) {
340 for (tc = timecounters; error == 0 && tc != NULL; tc = tc->tc_next) {
731 tc->tc_next = timecounters;
732 timecounters = tc;
760 for (best = tc = timecounters; tc != NULL; tc = tc->tc_next) {
787 * Stop using a timecounter and remove it from the timecounters list.
799 for (tcp = &timecounters, tc = timecounters;
    [all...]
kern_tc.c 42 * https://papers.freebsd.org/2002/phk-timecounters.files/timecounter.pdf
138 static struct timecounter *timecounters = &dummy_timecounter; variable in typeref:struct:timecounter *
303 for (newtc = timecounters; newtc != NULL; newtc = newtc->tc_next) {
340 for (tc = timecounters; error == 0 && tc != NULL; tc = tc->tc_next) {
731 tc->tc_next = timecounters;
732 timecounters = tc;
760 for (best = tc = timecounters; tc != NULL; tc = tc->tc_next) {
787 * Stop using a timecounter and remove it from the timecounters list.
799 for (tcp = &timecounters, tc = timecounters;
    [all...]

Completed in 23 milliseconds