proc_switch(): rename from proc_schedule(). Split out the real cooperative scheduler.
[bertos.git] / bertos / kern / proc_p.h
index f31fc621ff8461416e725722bc531afa221a7f29..a0e87be22ba6f870e0536db7e35edd997cea9a6f 100644 (file)
@@ -133,8 +133,8 @@ extern REGISTER List     ProcReadyList;
 
 #endif // !CONFIG_KERN_PRI
 
-/** Schedule to another process *without* adding the current to the ready list. */
-void proc_schedule(void);
+/// Schedule another process *without* adding the current one to the ready list.
+void proc_switch(void);
 
 #if CONFIG_KERN_PREEMPT
 void proc_entry(void (*user_entry)(void));