Lines Matching defs:k_itimer
62 struct k_itimer { struct
63 struct list_head list; /* free/ allocate list */
64 struct hlist_node t_hash;
65 spinlock_t it_lock;
66 clockid_t it_clock; /* which timer type */
67 timer_t it_id; /* timer id */
68 int it_overrun; /* overrun on pending signal */
69 int it_overrun_last; /* overrun on last delivered signal */
70 int it_requeue_pending; /* waiting to requeue this timer */
72 int it_sigev_notify; /* notify word of sigevent struct */
73 struct signal_struct *it_signal;
74 union {
78 struct sigqueue *sigq; /* signal queue entry. */
79 union {
105 int (*timer_create) (struct k_itimer *timer); argument