gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 5 of 5 for funcall:to_usec (0.00 seconds)
tkernel_2
kernel/sysmgr/src/sysmgr.h - 12.6KB - 342 lines
178: 
179: #define to_usec_tmo(ms) ( (TMO_U)(( (ms) > 0 )? to_usec(ms): (ms)) )
180: #define to_msec_tmo(us) ( (TMO)  (( (us) > 0 )? to_msec(us): (us)) )
kernel/tkernel/src/task_manage.c - 23.8KB - 956 lines
483: {
484:         return _tk_chg_slt_u(tskid, to_usec(slicetime));
485: }
kernel/tkernel/src/time_calls.c - 27.4KB - 1,118 lines
162: {
163:         return _tk_dly_tsk_u(to_usec(dlytim));
164: }
More results from time_calls.c
kernel/tkernel/src/timer.c - 6.2KB - 216 lines
61:         if ( n < 2 ) t[1] = 0;
62:         TIMER_PERIOD = to_usec(t[0]) + t[1];
63:         if ( TIMER_PERIOD < MIN_TIMER_PERIOD
kernel/tkernel/src/timer.h - 3.0KB - 120 lines
30: 
31: #define to_usec_tmo(ms) ( ( (ms) > 0 )? to_usec(ms): (ms) )
32: