Coding style fix
authorbernie <bernie@38d2e660-2303-0410-9eaa-f027e97ec537>
Mon, 18 Feb 2008 15:33:13 +0000 (15:33 +0000)
committerbernie <bernie@38d2e660-2303-0410-9eaa-f027e97ec537>
Mon, 18 Feb 2008 15:33:13 +0000 (15:33 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1128 38d2e660-2303-0410-9eaa-f027e97ec537

kern/proc.h

index 7c2a624bef22eb424c5eec22a08af78bc3cd9f2a..21b2696826f384d5d426eee1b3e846a93d66496e 100644 (file)
@@ -62,9 +62,9 @@ struct Process *proc_new_with_name(const char* name, void (*entry)(void), iptr_t
 void proc_exit(void);
 void proc_switch(void);
 void proc_test(void);
-struct Processproc_current(void);
+struct Process *proc_current(void);
 iptr_t proc_current_user_data(void);
-void proc_rename(struct Processproc, const char* name);
+void proc_rename(struct Process *proc, const char* name);
 
 #if CONFIG_KERN_PREEMPTIVE
        void proc_forbid(void);