Is the kill function in Linux synchronous? Say, I programatically call the kill function to terminate a process, will it return only when the inten
kill
The kill system call does not wait for the other process to do anything. The signal is posted to the target process and the system call returns. The target process notices the signal when it is scheduled to run.