Add function prototypes
[bertos.git] / kern / proc.c
index bfbc0c920f9fbdd0d909cdae8953c52ee7dbdf52..b735846dff82490fdfc6ddeefffbe89ecdb43767 100755 (executable)
@@ -17,6 +17,9 @@
 
 /*
  * $Log$
+ * Revision 1.3  2004/06/06 18:37:57  bernie
+ * Rename event macros to look like regular functions.
+ *
  * Revision 1.2  2004/06/03 11:27:09  bernie
  * Add dual-license information.
  *
@@ -67,7 +70,7 @@ struct Process MainProcess;
 static void proc_init_struct(Process* proc)
 {
 #if CONFIG_KERN_TIMER
-       INITEVENT_SIG(&proc->proc_timer.expire, proc, SIG_SINGLE);
+       event_initSignal(&proc->proc_timer.expire, proc, SIG_SINGLE);
 #endif
 
 #if CONFIG_KERN_SIGNALS