I do understand that while exec() does not return after it executes in Unix ,system() may or may not return depending on the situation.But can anyone explain why exec() system call does not return and also the differences between exec() and system() in Unix operating system
Tell me more
×
Unix & Linux Stack Exchange is a question and answer site for
users of Linux, FreeBSD and other Un*x-like operating systems.. It's 100% free, no registration required.
|
system() is equivalent to fork() + exec() + wait(); this means when a process run system() function it creates a new process and waits the end of this process. The new process executes the command in it's own environment, when it has finished the caller receives the signal child. For further information "exec replaces the current process image with a new process image", this means when it exits the caller exits too as the caller has become the new process. |
||||
|
|
This a system call in Unix OS that replaces the currently running process with a information from the binary program. |
|||
|
|
system(3)is not a system call, it's a library function that itself makes a few system calls. – Stephane Chazelas Oct 30 '12 at 15:18system()always returns. – psusi Feb 18 at 15:14