1 /* Copyright (c) 2013 The Regents of the University of California
2 * Barret Rhoden <brho@cs.berkeley.edu>
3 * See LICENSE for details.
5 * Alarm device includes (needed for the linkage to struct proc) */
17 TAILQ_ENTRY(proc_alarm) link;
20 struct alarm_waiter a_waiter;
24 struct fdtap_slist fd_taps;
28 TAILQ_HEAD(proc_alarm_list, proc_alarm);
30 struct proc_alarm_set {
31 struct proc_alarm_list list;
33 struct timer_chain *tchain;
37 void devalarm_init(struct proc *p);