当前位置: 技术问答>linux和unix
关于系统调用表里的一个问题
来源: 互联网 发布时间:2015-03-04
本文导语: 关于系统调用表里的一个问题 系统调用表里面 .long SYMBOL_NAME(old_mmap) old_是什么意思? 这个系统调用与 .long SYMBOL_NAME(sys_mmap2) 有什么区别? 我看的内核是2.4的 mmap的功能是什么? | ...
关于系统调用表里的一个问题
系统调用表里面
.long SYMBOL_NAME(old_mmap)
old_是什么意思?
这个系统调用与
.long SYMBOL_NAME(sys_mmap2)
有什么区别?
我看的内核是2.4的
mmap的功能是什么?
系统调用表里面
.long SYMBOL_NAME(old_mmap)
old_是什么意思?
这个系统调用与
.long SYMBOL_NAME(sys_mmap2)
有什么区别?
我看的内核是2.4的
mmap的功能是什么?
|
就是两个不同的系统调用,old_mmap函数就是mmap系统调用的入口,sys_mmap2是mmap2的。
mmap, munmap - map or unmap files or devices into memory
The function mmap2 operates in exactly the same way as mmap(2), except
that the final argument specifies the offset into the file in units of
the system page size (instead of bytes). This enables applications
that use a 32-bit off_t to map larger files (typically up to 2^44
bytes).
mmap, munmap - map or unmap files or devices into memory
The function mmap2 operates in exactly the same way as mmap(2), except
that the final argument specifies the offset into the file in units of
the system page size (instead of bytes). This enables applications
that use a 32-bit off_t to map larger files (typically up to 2^44
bytes).
|
man一下不就知道了,内存映射文件。