如何禁用“请求寻呼” 对于我的用户空间程序之一?
对于专门的测试,我必须禁用“请求分页” 对于我的一个用户空间程序
http://en.wikipedia.org/wiki/Demand_paging
知道我该怎么做吗? (嵌入式 Linux 设备;2.6 内核)
For an dedicated test I have to disable "demand paging"
for exactly one of my userspace programs
http://en.wikipedia.org/wiki/Demand_paging
Any idea how I could do this ?
(embedded linux appliance; 2.6 kernel)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您有能力修改应用程序,则可以使用
mlock()
/mlockall()
系统调用来确保您的内存不会被调出:将阻止当前分配的所有内存以及分配给该进程的任何未来内存被换出。 您可以使用
mlock()
系统调用来更好地控制锁定哪些内存部分。If you have the ability to modify the application, you could use the
mlock()
/mlockall()
system calls to ensure that your memory doesn't get paged out:This will prevent all memory currently allocated, and any future memory that is allocated to this process from being swapped out. You can use the
mlock()
system call to get finer control over which parts of memory are locked.