Reformat.
authorbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Thu, 14 Jan 2010 14:19:41 +0000 (14:19 +0000)
committerbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Thu, 14 Jan 2010 14:19:41 +0000 (14:19 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@3133 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/kern/proc.c

index 57cda38452f6677c9eb41b658024c7fcb104b232..6bf67a80c189e72040ae0bbc525b1b3f14fcfe51 100644 (file)
@@ -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