Home
last modified time | relevance | path

Searched refs:ctmr (Results 1 – 1 of 1) sorted by relevance

/linux/include/linux/
H A Dposix-timers.h70 struct cpu_timer *ctmr) in cpu_timer_enqueue() argument
72 ctmr->head = head; in cpu_timer_enqueue()
73 return timerqueue_add(head, &ctmr->node); in cpu_timer_enqueue()
76 static inline bool cpu_timer_queued(struct cpu_timer *ctmr) in cpu_timer_queued() argument
78 return !!ctmr->head; in cpu_timer_queued()
81 static inline bool cpu_timer_dequeue(struct cpu_timer *ctmr) in cpu_timer_dequeue() argument
83 if (cpu_timer_queued(ctmr)) { in cpu_timer_dequeue()
84 timerqueue_del(ctmr->head, &ctmr->node); in cpu_timer_dequeue()
85 ctmr->head = NULL; in cpu_timer_dequeue()
91 static inline u64 cpu_timer_getexpires(struct cpu_timer *ctmr) in cpu_timer_getexpires() argument
[all …]