From: bernie Date: Sun, 6 Jun 2004 18:37:57 +0000 (+0000) Subject: Rename event macros to look like regular functions. X-Git-Tag: 1.0.0~1210 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=1b1b4759ab431f6ee98eac6cd9c05500c8bb39e9;p=bertos.git Rename event macros to look like regular functions. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@31 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/kern/proc.c b/kern/proc.c index bfbc0c92..b735846d 100755 --- a/kern/proc.c +++ b/kern/proc.c @@ -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