Rename event macros to look like regular functions.
authorbernie <bernie@38d2e660-2303-0410-9eaa-f027e97ec537>
Sun, 6 Jun 2004 18:37:57 +0000 (18:37 +0000)
committerbernie <bernie@38d2e660-2303-0410-9eaa-f027e97ec537>
Sun, 6 Jun 2004 18:37:57 +0000 (18:37 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@31 38d2e660-2303-0410-9eaa-f027e97ec537

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