Round Robin Scheduling clarification...

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 

Round Robin Scheduling clarification...

930 次查看
rpneeraj
Contributor II

Hi Radek,

While running tasks in Round Robin scheduling, if any task calls blocking call like send/recv.

How the scheduler will act on that task, I mean to ask will the scheduler moves that task to the end of the ready queue

and assigns CPU to other task....or how it goes ahead....please clarify that...

Thanks,

NS

0 项奖励
回复
1 回复

805 次查看
Martin_
NXP Employee
NXP Employee

Blocking functions like send()/recv() block the calling task via _task_block() function. Round robin policy only applies to Active/Ready tasks.