From: batt Date: Thu, 14 Jan 2010 14:19:41 +0000 (+0000) Subject: Reformat. X-Git-Tag: 2.4.0~64 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=a1a1e5f2ebbf681b7cf966481a1929e0542d7c3a;p=bertos.git Reformat. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@3133 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/bertos/kern/proc.c b/bertos/kern/proc.c index 57cda384..6bf67a80 100644 --- a/bertos/kern/proc.c +++ b/bertos/kern/proc.c @@ -157,7 +157,7 @@ void proc_init(void) * \endcode * is a more convenient way to create a process, as you don't have to specify * the name. - * + * * \return Process structure of new created process * if successful, NULL otherwise. */ @@ -252,9 +252,9 @@ struct Process *proc_new_with_name(UNUSED_ARG(const char *, name), void (*entry) makecontext(&proc->context, (void (*)(void))proc_entry, 1, entry); #else // !CONFIG_KERN_PREEMPT - + CPU_CREATE_NEW_STACK(proc->stack, entry, proc_exit); - + #endif // CONFIG_KERN_PREEMPT #if CONFIG_KERN_MONITOR