Searched refs:ttd (Results 1 - 5 of 5) sorted by relevance

/xnu-2422.115.4/osfmk/kern/
H A Dtimer_call.h60 uint64_t ttd; /* Time to deadline at creation */ member in struct:timer_call
H A Dthread_call.c940 call->ttd = (sdeadline > abstime) ? (sdeadline - abstime) : 0;
948 DTRACE_TMR5(thread_callout__create, thread_call_func_t, call->tc_call.func, uint64_t, (deadline - sdeadline), uint64_t, (call->ttd >> 32), (unsigned) (call->ttd & 0xFFFFFFFF), call);
995 DTRACE_TMR4(thread_callout__cancel, thread_call_func_t, call->tc_call.func, 0, (call->ttd >> 32), (unsigned) (call->ttd & 0xFFFFFFFF));
1212 DTRACE_TMR6(thread_callout__start, thread_call_func_t, func, int, 0, int, (call->ttd >> 32), (unsigned) (call->ttd & 0xFFFFFFFF), (call->tc_flags & THREAD_CALL_DELAYED), call);
1218 DTRACE_TMR6(thread_callout__end, thread_call_func_t, func, int, 0, int, (call->ttd >> 32), (unsigned) (call->ttd & 0xFFFFFFFF), (call->tc_flags & THREAD_CALL_DELAYED), call);
H A Dthread_call.h285 uint64_t ttd; /* Time to deadline at creation */ member in struct:thread_call
H A Dtimer_call.c538 call->ttd = call->soft_deadline - ctime;
544 (call->ttd >> 32), (unsigned) (call->ttd & 0xFFFFFFFF), call);
645 (call->ttd >> 32), (unsigned) (call->ttd & 0xFFFFFFFF));
776 0, (call->ttd >> 32),
777 (unsigned) (call->ttd & 0xFFFFFFFF), call);
783 *ttdp = call->ttd;
H A Dsched_prim.c940 uint64_t ttd = PROCESSOR_DATA(current_processor(), timer_call_ttd); local
942 if (ttd) {
943 if (ttd <= timer_deadline_tracking_bin_1)
946 if (ttd <= timer_deadline_tracking_bin_2)

Completed in 31 milliseconds