top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is Fork swap in Unix/Linux?

0 votes
512 views
What is Fork swap in Unix/Linux?
posted Jan 11, 2016 by Jayshree

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote

"fork()" is a system call to create a child process. When the parent process calls "fork()" system call, the child process is created and if there is short of memory then the child process is sent to the read-to-run state in the swap device, and return to the user state without swapping the parent process. When the memory will be available the child process will be swapped into the main memory.

answer Jan 11, 2016 by Shivaranjini
...