aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/xeno/ac_timer.h
diff options
context:
space:
mode:
authorrn@wyvis.research.intel-research.net <rn@wyvis.research.intel-research.net>2003-03-14 15:48:09 +0000
committerrn@wyvis.research.intel-research.net <rn@wyvis.research.intel-research.net>2003-03-14 15:48:09 +0000
commitd9812e47d9c20b15dbb920cc451eff1c7b88e81c (patch)
tree20bac2c5d016fc3b916b1d18f52d0ba1f924251d /xen/include/xeno/ac_timer.h
parenta16eb6b1a16f60f8616b37996d6da32fcdcfecec (diff)
downloadxen-d9812e47d9c20b15dbb920cc451eff1c7b88e81c.tar.gz
xen-d9812e47d9c20b15dbb920cc451eff1c7b88e81c.tar.bz2
xen-d9812e47d9c20b15dbb920cc451eff1c7b88e81c.zip
bitkeeper revision 1.125 (3e71f9b97xoz4trwItZ94ikXgOSgOA)
BK merge and pull etc sucks
Diffstat (limited to 'xen/include/xeno/ac_timer.h')
-rw-r--r--xen/include/xeno/ac_timer.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/xen/include/xeno/ac_timer.h b/xen/include/xeno/ac_timer.h
index 7cf568d2fc..280f377d17 100644
--- a/xen/include/xeno/ac_timer.h
+++ b/xen/include/xeno/ac_timer.h
@@ -43,10 +43,10 @@
*/
struct ac_timer {
- struct list_head timer_list;
- s_time_t expires; /* system time time out value */
- unsigned long data;
- void (*function)(unsigned long);
+ struct list_head timer_list;
+ s_time_t expires; /* system time time out value */
+ unsigned long data;
+ void (*function)(unsigned long);
};
/* interface for "clients" */
@@ -55,7 +55,7 @@ extern int rem_ac_timer(struct ac_timer *timer);
extern int mod_ac_timer(struct ac_timer *timer, s_time_t new_time);
static inline void init_ac_timer(struct ac_timer *timer)
{
- //timer->next = NULL;
+ timer->timer_list.next = NULL;
}
/* interface used by programmable timer, implemented hardware dependent */