From 1b1b4759ab431f6ee98eac6cd9c05500c8bb39e9 Mon Sep 17 00:00:00 2001 From: bernie Date: Sun, 6 Jun 2004 18:37:57 +0000 Subject: [PATCH] Rename event macros to look like regular functions. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@31 38d2e660-2303-0410-9eaa-f027e97ec537 --- kern/proc.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 -- 2.25.1