Overlay (operating system)
From Wikipedia, the free encyclopedia
For the division of a single program to reduce memory requirements, see Overlay (programming).
| This article does not cite any references or sources. Please help improve this article by adding citations to reliable sources. Unsourced material may be challenged and removed. (December 2009) |
|
|
It has been suggested that this article or section be merged into Chain loading. (Discuss) Proposed since August 2011. |
In operating systems, an overlay is when a process replaces itself with the code of another program. On Unix-like systems, this is accomplished with the exec() system call.
In Unix, the only way to run new programs is to fork the running process, and then overlay the new program on top of the child. This is known as the fork-exec technique.
[edit] See also
| This operating system-related article is a stub. You can help Wikipedia by expanding it. |