====== OSA : OS_Run ====== **OS_Run ()**\\ === === Run operating system's kernel. Calls ##[[en:osa:ref:allservices:OS_Sched|OS_Sched]]##() in infinite loop. === Call allowed: === Only in main() === Parameters: === None === Returns: === nothing === Example: === void main (void) { OS_Init(); // init system variables OS_Task_Create(...); // Create tasks OS_Run(); // } === See also === ---- * [[en:osa:ref:services:alphabetical|Alphabetical]] * [[en:osa:ref:services:brieflist|All services]] ~~UP~~