多线程环境下的调度程序
在具有多线程的操作系统中可以找到多少个调度程序? 我不确定答案,但我认为这取决于您是否使用内核级线程或用户级线程,我希望您能帮助我澄清我的疑问。
How many scheduler might find in a Operating System with Multithreading?
I'm not sure of the answer, but I think it depends on whether you work with kernel-level threads or user level, I hope you can help me clarify my doubt.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您希望系统拥有任意数量的调度程序。 DOS 几乎为零,Linux 内核通常有一个(进程)调度程序,尽管还有其他类型的调度程序,最后,用户空间程序可以做任何他们想做的事情,因此可能有任意数量的(进程)调度程序。特别是考虑 cron 和 LSF。
Any number of schedulers you want your system to have. DOS pretty much had zero, the Linux kernel usually has one (process) scheduler, though there are other types of scheds, and finally, userspace programs can do whatever they want, so there may be any number of (process) schedulers. Especially considering cron and LSF.