v2.6.39.4 中的文件entry.S 在哪里?
我正在研究linux中的系统调用,源代码版本为2.6.39.4。
书上说系统调用是在entry.S中实现的,位于arch/i386/kernel/entry.S, 但我在 v2.6.39.4 中找不到该文件。
那么在我的版本中哪个文件实现系统调用?和旧的有什么区别吗?
I am studying system call in linux with source code in version 2.6.39.4.
Books said that system call is implementd in entry.S, located in arch/i386/kernel/entry.S,
but I can't find that file in v2.6.39.4.
so which file implement system call in my version? Any difference with old ones?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你书中的信息似乎已经过时了。
您应该可以在
arch/x86/kernel/entry_32.S
和arch/x86/kernel/entry_64.S
中找到所需内容。The information in your books seems to be outdated.
You should find what you're looking for in
arch/x86/kernel/entry_32.S
andarch/x86/kernel/entry_64.S
.