VirtualProtectEx 的 Linux 等效项?
我正在做一些简单的 JITing,并使用 VirtualProtectEx 在 Windows 下将页面标记为可执行文件。 在 Linux 下,最好是在其他类似 POSIX/Unix 的操作系统下,相当于什么?
I am doing some simple JITing, and use VirtualProtectEx under Windows to mark pages as executable.
What would be the equivalent of that under Linux, and preferably, other POSIX/Unix-like OSes too?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在寻找 mprotect 并且可能也在寻找 mmap。请注意,与 Windows 不同,进程 A 无法更改进程 B 的内存映射(缺少 ptrace)。
You are looking for mprotect and probably also mmap. Note that, unlike with Windows, there is no way for process A to change process B's memory map (short of horrible tricks with ptrace).