交替线程

发布于 2024-12-05 21:01:47 字数 42 浏览 0 评论 0原文

您能为我指出一个方向,让我发现 Linux 内核中线程是如何交替的吗?

Could you point me in a direction for discovering how threads are being alternated in the Linux kernel?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心欲静而疯不止 2024-12-12 21:01:47

虽然我对内核没有深入的了解,但据我所知,内核线程(& 进程)显示为任务任务之间的切换称为上下文切换。上下文切换由调度程序通过 schedule 调用触发,该调用位于 kernel/sched.c 中(http://lxr.linux.no/linux+v3.0.4/kernel/sched.c#L4247 )。在 schedule 函数 context_switch 中被调用,该函数切换内存映射和内存映射。为新线程注册值。我建议查看 schedule 函数。
PS:您可以使用http://lxr.linux.no在线浏览内核代码。
希望这有帮助!

Although I do not possess in depth knowledge about the kernel, but AFAIK to the kernel threads (& processes) appear as tasks. The switching between tasks is known as context switch. Context switch is triggered by scheduler through schedule call which is present in kernel/sched.c ( http://lxr.linux.no/linux+v3.0.4/kernel/sched.c#L4247 ). In schedule function context_switch is called which switches memory map & register values for the new thread. I would suggest looking at schedule function.
P.S.: You can use http://lxr.linux.no for browsing kernel code online.
Hope this helps!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文