当前位置: 技术问答>linux和unix
请教 linux的fork从什么版本开始支持COW?
来源: 互联网 发布时间:2016-06-22
本文导语: 请教 linux的fork从什么版本开始支持COW? 要使fork使用cow机制,需要怎么设置还是什么特殊使用方式? 多谢 | 在fork()的man page里有关于此的说明: Under Linux, fork() is implemented using copy-on-w...
请教 linux的fork从什么版本开始支持COW?
要使fork使用cow机制,需要怎么设置还是什么特殊使用方式?
多谢
要使fork使用cow机制,需要怎么设置还是什么特殊使用方式?
多谢
|
在fork()的man page里有关于此的说明:
Under Linux, fork() is implemented using copy-on-write pages, so the only penalty that it incurs is the time and memory required to duplicate the parent's page tables, and to create a unique task structure for the child.
应该不用特性设置
Under Linux, fork() is implemented using copy-on-write pages, so the only penalty that it incurs is the time and memory required to duplicate the parent's page tables, and to create a unique task structure for the child.
应该不用特性设置
|
从linux0.11就是COW模式