Rename event macros to look like regular functions.
[bertos.git] / drv / timer.c
index a6c31d9208be1aaea6a0e9cff4540d2d0f5ad454..0bd5defef8e623c91a7a1607ae96f7c24bef180c 100755 (executable)
@@ -15,6 +15,9 @@
 
 /*
  * $Log$
+ * Revision 1.4  2004/06/06 18:25:44  bernie
+ * Rename event macros to look like regular functions.
+ *
  * Revision 1.3  2004/06/06 17:18:42  bernie
  * Fix \!CONFIG_KERN_SIGNALS code paths.
  *
@@ -238,7 +241,7 @@ DEFINE_TIMER_ISR
                REMOVE((Node *)timer);
 
                /* Execute the associated event */
-               DOEVENT_INTR(&timer->expire);
+               event_doIntr(&timer->expire);
        }
 }