如何使用“vi -t”找到系统调用的源代码?自由BSD
我老师的笔记说
“可以构建一个标签文件,这将使在内核源代码中查找内容变得更容易。您可以使用“vi -t”和函数名称在内核源代码树中查找函数的源代码”
例如:
#vi -t open
can open the source code of open.
但我在我的 FreeBSD 8.1 上尝试过。失败了……为什么?我该如何配置它? 谢谢!
My teacher's notes said
"There is a tags file that can be built which will make finding things in the kernel source code easier. You can find source code for a function in the kernel source tree by using "vi -t" and the function name"
Such as:
#vi -t open
can open the source code of open.
But I tried it on my FreeBSD 8.1. It fails...why? How can I configure it?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要首先使用
ctags(1)
。You need to generate the tags file first with
ctags(1)
.