MCPcopy Create free account
hub / github.com/RT-Thread/rt-thread / rt_ktime_hrtimer_ndelay

Function rt_ktime_hrtimer_ndelay

components/drivers/ktime/src/hrtimer.c:372–376  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

370}
371
372rt_err_t rt_ktime_hrtimer_ndelay(struct rt_ktime_hrtimer *timer, unsigned long ns)
373{
374 rt_uint64_t res = rt_ktime_cputimer_getres();
375 return rt_ktime_hrtimer_sleep(timer, (ns * RT_KTIME_RESMUL) / res);
376}
377
378rt_err_t rt_ktime_hrtimer_udelay(struct rt_ktime_hrtimer *timer, unsigned long us)
379{

Callers 3

rt_ktime_hrtimer_udelayFunction · 0.85
rt_ktime_hrtimer_mdelayFunction · 0.85
nanosleepFunction · 0.85

Calls 2

rt_ktime_hrtimer_sleepFunction · 0.85
rt_ktime_cputimer_getresFunction · 0.50

Tested by

no test coverage detected