在 POSIX 中映射文件的内存
当在 POSIX
系统中映射文件时,我们是否需要保持文件描述符打开,直到我们完成 mmap
ed 内存块(并 close
在我们munmap
之后)或者我们可以(应该?)一旦mmap
成功就关闭
文件描述符吗?两者似乎都可以在我的 Linux 系统上运行。
When memory mapping files in a POSIX
system, do we need to keep the file-descriptor open till we're done with the mmap
ed memory block (and close
it after we munmap
) or can (should?) we close
the file descriptor once mmap
succeeds? Both seem to work on my Linux system.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自开放组标准
From the Open Group standard