waiting for multiple childs - C - waitpid


 
Thread Tools Search this Thread
Top Forums Programming waiting for multiple childs - C - waitpid
# 1  
Old 02-28-2011
waiting for multiple childs - C - waitpid

Hi gurus, I would like to fork more children and then write their return values: so far I tried:

Code:
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>

int main(void)
{
        pid_t pid;
        int rv=0, i;
        pid_t child_pids[5];


        for (i=1; i<=5; i++){

                /* Multiple child forking */
                switch(pid = fork()){
                        case -1:
                                /* something went wrong */
                                /* parent exits */
                                perror("fork");
                                exit(1);

                        case 0:
                                /*Children process*/
                                child_pids[i] = getpid();
                                printf(" CHILD: number (and return value): %d PID: %d PPID: %d \n", i, getpid(), getppid());
                                exit(i);
                                break;

                                /*Missing code for parent process - will be executed out of loop*/
                }
        }
        /*Parent process*/
        if (pid!=0 && pid!=-1) {
                printf("PARENT: my PID is %d\n", getpid());

                for (i=1; i<=5; i++){
                        waitpid(child_pids[i], NULL, 0);
                        printf("PARENT: Child: %d returned value is: %d\n", i, WEXITSTATUS(child_pids[i]));
                }
        }
}

But returns any random variables for child process:

...
PARENT: Child: 3 returned value is: 13
PARENT: Child: 3 returned value is: 127
...


also tried following
Code:
int main(void)
{
        pid_t pid;
        int rv=0, i;
        pid_t child_pids[5];
        int child_state = 9;
        pid_t rc_pid;


        for (i=1; i<=5; i++){

                /* Multiple child forking */
                switch(pid = child_pids[i] = fork()){
                        case -1:
                                /* something went wrong */
                                /* parent exits */
                                perror("fork");
                                exit(1);

                        case 0:
                                /*Children process*/
                                //child_pids[i] = getpid();
                                printf(" CHILD: number (and return value): %d PID: %d PPID: %d \n", i, getpid(), getppid());
                                exit(i);
                                break;

                                /*Missing code for parent process*/
                }
        }
        /*Parent process*/
        if (pid!=0 && pid!=-1) {
                printf("PARENT: my PID is %d\n", getpid());

                for (i=1; i<=5; i++){
                        rc_pid = waitpid(child_pids[i], NULL, 0);
                        printf("PARENT: Child: %d returned value is: %d\n", i, WEXITSTATUS(child_pids[i]));
                }
        }
}

but returns always number 19 as return code of children
...
PARENT: Child: 4 returned value is: 19
...

Probably something something is wrong with waitpid() function
Thanks a lot.
# 2  
Old 02-28-2011
Yes, you're not supposed to use WEXITSTATUS() on a PID, it's a different integer, but you're throwing that value away. Try:

Code:
{
        int status;
        waitpid(child_pids[i], &status, 0);
        printf("exit status %d = %d\n", i, WEXITSTATUS(status));
}

This User Gave Thanks to Corona688 For This Post:
# 3  
Old 03-01-2011
Quote:
Originally Posted by Corona688
Yes, you're not supposed to use WEXITSTATUS() on a PID, it's a different integer, but you're throwing that value away. Try:

Code:
{
        int status;
        waitpid(child_pids[i], &status, 0);
        printf("exit status %d = %d\n", i, WEXITSTATUS(status));
}

Thanks a lot that worked as expected Smilie just one question is this right way to create children ?
# 4  
Old 03-01-2011
Instead of 'missing code for parent section' I'd do this:

Code:
default: /* Parent does nothing in the loop */
        break;

Some compilers need it.

I'd also count errors to make sure you're not waiting for more processes than you actually created.

Otherwise I see nothing incorrect in your code.

Last edited by Corona688; 03-01-2011 at 04:55 PM..
# 5  
Old 03-01-2011
if there is
Code:
                        case -1:
                                /* something went wrong */
                                /* parent exits */
                                perror("fork");
                                exit(1);

program should quit if some errors happens and no waiting will be called. or am I missed something ?
# 6  
Old 03-01-2011
You're right, I didn't quite catch that.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Programming

Pipe between Childs

Hey guys, I have to make a C program that simulates this command : cat (files here) | sort > file.txt So, I start and create a pipe. Then create the first child. This first child will execute the Cat through the pipe. Then create a second child that will execute sort, with input from... (4 Replies)
Discussion started by: Poppo
4 Replies

2. Programming

waitpid and grandchildren

I'm attempting to write a daemon that will start, stop, and monitor processes across a network of servers, meaning that a daemon would start on each server, attempt to connect to siblings at regular intervals (if there are unconnected siblings), and start services as remote dependencies are... (3 Replies)
Discussion started by: kshots
3 Replies

3. Programming

[C]Fork and waitpid

Hi folks, I am writing a simple program to understand how fork() and waitpid works, but it doesn't seem that is working like I wanted. if(fork()==0){ //el hijo pid1=getpid(); printf("\nSoy el hijo %d",pid1); }else { //el padre if (fork()==0) { //el hijo pid2=getpid();... (2 Replies)
Discussion started by: lamachejo
2 Replies

4. Programming

How Can I share a socket between childs?

Hello guys! I had seen some posts at this forum talking about my problem, but maybe my scenario is a little different, and I want other solutions. I saw users of this forums saying that the way to shared sockets is using UNIX Sockets, but this is the only way in my scenario? My Scenario:... (4 Replies)
Discussion started by: serpens11
4 Replies

5. Shell Programming and Scripting

Executing multiple processes without waiting for their exit status.

Hello Friends, Hope you are doing well. I just need a help in executing multiple processes. I've written a shell script which calls another scritps. But the problem is there are too many processes to run, and each process takes about a min to finish its execution. So, I want to just... (3 Replies)
Discussion started by: singh.chandan18
3 Replies

6. Programming

Need help with fork, forking multiple childs and shared memory

Hi all, I m writing an application, where i need to fork multiple childs and those child should handle particular task given to them. More descriptive. For example, suppose i have 4 Network, each network has multiple nodes. Now on the basis of network child should be forked and these child... (8 Replies)
Discussion started by: helpmeforlinux
8 Replies

7. Programming

forking. sharing global data in childs

hi, i want to write a code for forking 3 4 child. n wants that every child process one of the account from global account list. i wrote a program for that, but problem is every child is processing every account in list. what can me done to avoid it. attaching code with it #include <stdio.h>... (2 Replies)
Discussion started by: anup13
2 Replies

8. Programming

share file descriptor between childs

#include <stdio.h> #include <stdlib.h> #include <sys/types.h> #include <sys/stat.h> #include <sys/wait.h> #include <fcntl.h> #include <signal.h> #include <unistd.h> #include <string.h> #define BUFF_SIZE 256 #define CHILDS 4 #define DATAFILE "Client_Files.txt" void worker(int n);... (3 Replies)
Discussion started by: dlcpereira
3 Replies

9. Shell Programming and Scripting

How to kill a process and its childs given pid and userid

I need to write a shell script which would take 2 arguments pid , userid. Then it should kill all the child process under it. If a child process is not killed then it should wait for 1 minute and should kill. can anybody give me the idea to write it? (0 Replies)
Discussion started by: nani_g
0 Replies

10. Programming

problems with FORK() and WAITPID()

Dear All, I'm trying to write multithreading TCP Daemon which executes external program when new network connection arrives on a socket. After accept() I'm doing fork() for initiating of new child process, in which will be executed external program. After child creation I'm doing fork() again,... (3 Replies)
Discussion started by: Polkovnik
3 Replies
Login or Register to Ask a Question