From a1a1e5f2ebbf681b7cf966481a1929e0542d7c3a Mon Sep 17 00:00:00 2001 From: batt Date: Thu, 14 Jan 2010 14:19:41 +0000 Subject: [PATCH] Reformat. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@3133 38d2e660-2303-0410-9eaa-f027e97ec537 --- bertos/kern/proc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 -- 2.25.1