python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Executing execvp() in Child process after fork() still taking over parent process?
I'm executing two bash command ps (which is valid bash command to show processes info) and abc (Invalid bash command) using execvp() inside a child process after creating it with by fork()
The problem...
Mysterious Jack
Votes: 0
Answers: 1
Can I have a Perl script, initiated from a browser, fork itself, and not wait for the child to end?
Also posted on PerlMonks.
I have this very simple Perl script on my linux server.
What I would like to be able to do is to call the script from a browser on a separate machine
Have the script initiate...
Bartender1382
Votes: 0
Answers: 3
OS True / False Questions
I have several questions regarding OS, which I'd like to verify:
Which of the following statement is FALSE?
a. Threads within the same process share the same memory space
b. Process and its child pr...
CalculusLover
Votes: 0
Answers: 1
Fork() and Wait() with execvp() in C
I'm am trying to use the fork method to call a different program and wait until it completes,
I tried to check what is the problem and it seems that the wait function doesn't wait to the childReturns ...
1barmoshe1
Votes: 0
Answers: 3