当前位置: 技术问答>linux和unix
■2.6内核的两个宏常量“nr_syscalls”和“NR_syscalls”?
来源: 互联网 发布时间:2015-11-10
本文导语: 我想在2.6内核中添加系统调用,于是查询了网上的相关文档。不过这个版本的内核中,sys_call_table被从entry.S中提了出来,单独放在了文件syscall_table.S中。因此当我相继在entry.S中发现了宏定义“#define nr_syscalls ((syscall_...
我想在2.6内核中添加系统调用,于是查询了网上的相关文档。不过这个版本的内核中,sys_call_table被从entry.S中提了出来,单独放在了文件syscall_table.S中。因此当我相继在entry.S中发现了宏定义“#define nr_syscalls ((syscall_table_size)/4)”以及在unistd.h中发现了宏定义“#define NR_syscalls 294”后,我就无法确定新内核下添加系统调用是否与前期版本基本相同,这两个宏定义到底各是做什么的呢?
|
个人理解:
当前表的地址减去表的开始地址.
The following statements excerpt from as mamual:
The special symbol `.' refers to the current address that as is assembling into.
Thus, the expression `melvin: .long .' defines melvin to contain its own address.
Assigning a value to . is treated the same as a .org directive. Thus, the expression `.=.+4'
is the same as saying `.space 4'.
当前表的地址减去表的开始地址.
The following statements excerpt from as mamual:
The special symbol `.' refers to the current address that as is assembling into.
Thus, the expression `melvin: .long .' defines melvin to contain its own address.
Assigning a value to . is treated the same as a .org directive. Thus, the expression `.=.+4'
is the same as saying `.space 4'.
|
NR_syscalls 系统调用总数。
|
一样。
sys_call_table它每个系统调用的size是.long,即4byte.
sys_call_table它每个系统调用的size是.long,即4byte.
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。