How can you use C to spawn an independent child process that goes about its business without thinking about the father?

I want to spawn several processes and shortly after they have been created they go to sleep for about 2 minutes before they do their job.

However, I don't want the father to wait until the child is finished because in the meantime I want to spawn off more processes.

I'm on Linux.

link|improve this question

Processes or Threads? – s4ms3milia May 15 '11 at 12:08
I just saw that I did not mention it. Let me edit my question. I'm asking for processes. – Frank Vilea May 15 '11 at 12:11
feedback

3 Answers

up vote 1 down vote accepted

Use fork(). The fork() System Call

pid_t pid = fork (); 
if (pid < 0) 
  // Error
else if (pid == 0) 
  // Child Process
  // Sleep 2 min. ?!
else 
  // Code for Father
link|improve this answer
The OP explicitly says that the parent process should not wait. Hence, using wait(2) is irrelevant to the question. – Blagovest Buyukliev May 15 '11 at 12:19
True, just had it in there cause i feel they "belong together" .. – s4ms3milia May 15 '11 at 12:22
feedback

Simply spawn as many processes as you need using fork(2), then call exit() in the parent process. The orphaned children will be adopted by the init process.

link|improve this answer
+1 for pointing out that init adopts orphaned children. – Pete Wilson May 15 '11 at 13:51
feedback

If what you want is creating multiple child processes doing their "own business" right after their creation, you should use vfork() (used to create new processes without fully copying the address space of the father process) and exec() family to replace the children processes' images with whatever you want.

if you don't want the father to wait until the child is finished, you should take advantage of asynchronous signal handling. A SIGCHLD is sent when a child process ends. So you can put the wait() within the signal handler for SIGCHLD rather than the father process and let the signal handler collect returning status for child process.

Below is a toy example:

#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <signal.h>
#include <stdlib.h>

sig_atomic_t child_process_ret_status;

void spawn(char *program,char *argv[]){
    pid_t child_pid=vfork();

    if(child_pid>0){
        printf("the parent process pid: %d\n",(int)getpid());
        printf("the cpid: %d\n",(int)child_pid);
        system("ping -c 10 www.google.com");
    }else{
        printf("the new process %d is going to execute the new program %s\n",(int)getpid(),program);
        execvp(program,argv);
        printf("you'll never see this if everything goes well.\n");
    }
}


void child_process_ret_handle(int sigval){
    if(sigval == SIGCHLD){
        printf("SIGCHLD received !\n");
        wait(&child_process_ret_status);
    }
}

int main(void){
    signal(SIGCHLD,child_process_ret_handle);
    char *program="sleep";
    char *argv[]={
        "sleep",
        "5",
        NULL
    };

    spawn(program,argv);
    if(WIFEXITED (child_process_ret_status)){
        printf("child process exited successfully with %d\n",WEXITSTATUS (child_process_ret_status));
    }else{
        printf("the child process exited abnormally\n");    
    }

    printf("parent process: %d returned!\n",getpid());
    return 0;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.