如果在 vxWorks 中禁用抢占,时间片会发生什么情况?
如果您在 VxWorks 中启用了循环调度,并且使用 taskLock() 来禁用抢占,那么当您的时间片到期时会发生什么?
If you have round robin scheduling enabled in VxWorks, and you use taskLock() to disable preemption, what happens when your timeslice expires?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当通过taskLock禁用抢占时,时间片计数器将不会增加。 在重新启用抢占之前,您的时间片永远不会过期。
When preemption is disabled via taskLock, the timeslice counter will not increment. Your timeslice will never expire until preemption is re-enabled.