"No child processes" and waitpif


 
Thread Tools Search this Thread
Top Forums Programming "No child processes" and waitpif
# 1  
Old 03-11-2009
"No child processes" and waitpif

Hi everybody,
i'm using a signal handler for the SIGCHLD signal.
Code:
void InstallNewSigChldHandler()
{     
    struct sigaction act;
    struct sigaction oldAct;
    act.sa_handler = CallWaitChildProcess;
 
    sigemptyset(&act.sa_mask);
    act.sa_flags = SA_NOCLDSTOP;

    if (sigaction(SIGCHLD, &act, &oldAct) < 0) 
    {
        cout<<"error in sigaction";
    }
}

The actual signal handler code is:
Code:
void CallWaitChildProcess(int signo) 
{
    int status, child_val, errStatus;

    pid_t retPid;
    retPid=waitpid(g_ChildProcessPid, &status, WNOHANG);
    errStatus=errno;
    if (retPid < 0) 
    {
        printf("waitpid failed.Error cause:%s",strerror(errStatus));
        return;
    }

    if(retPid==0)
    {
        printf("waitpid returned 0");
        return;
    }

    if (WIFEXITED(status))                /* did child exit normally? */
    {
        child_val = WEXITSTATUS(status); /* get child's exit status */
        printf("process pid:%d --> terminated normally with status %d\n", g_ChildProcessPid,child_val);
    }
}

I'm doing this cause i want to run two external programs from my main application,and catch their return code.So,i have the g_ChildProcessPid variable which holds the pid for the external program.

I expected that every other child would cause waitpid to return 0,since i specify the WNOHANG flag,but in my code i have some calls to the "system" function that cause a "No child processes" error.

For example,in a function i do:
Code:
sprintf(command,"rm %s/%s",getenv("LOG_DIR"),"test.log");
system(command);

This causes waitpid to fail,with the following error:
Code:
waitpid failed.Error cause:No child processes

Why?
# 2  
Old 03-11-2009
system() needs SIGCHLD since it creates and waits for processes to finish. You may wish to make your own implementation of it that is aware of your custom handlers, etc.
# 3  
Old 03-12-2009
Hmm i'm sorry....what do you mean? Can you make an example?

Another question:i have read somewhere that it's better not to call certain functions from within a signal handler function.What are these functions?

Thanks again Smilie
# 4  
Old 03-12-2009
Since signal handlers can be interrupted (bumped to the interrupt stack from where it is)
you have to call system I/O functions (as examples: read, write) and not functions in the STDC library like fgets and fputs. This is because a system is generally unaffacted by most signals - although read and write do respond to SIGINT for example. You have to read the man page for any function you want to use. First.

So, system functions (API) are usually a safer bet. You should also read the sigvector man page for your system, man 2 signal page as well because some implmentations of these calls may cause problems for write() calls -- as an example.

Any function that is async-signal-safe is okay. Thread safe is not the same thing. Anything async-signal-safe has to be thread-safe as well. But the reverse is not always true.

async-signal-safe function calls
http://www.opengroup.org/onlinepubs/...l#tag_02_04_04

Last edited by jim mcnamara; 03-12-2009 at 06:30 PM.. Reason: add link
# 5  
Old 03-20-2009
Thanks a lot for your reply jim Smilie

I couldn't work on the code in these days,so now it's time to face the problem Smilie

After reading your reply and some internet resource i am pretty sure that i am not following the right approach.Though,i am not expert in unix programming,so i ask for some further advice....

I attach some code:

1) I install my signal handler with
Code:
void InstallNewSigChldHandler()
{        
    struct sigaction act;
    struct sigaction oldAct;
    extern MainWindow * _mainWindow;
    
    /* Assign sig_chld as our SIGCHLD handler */
    act.sa_handler = CallWaitChildProcess;
    act.sa_flags = SA_NOCLDSTOP;

    if (sigaction(SIGCHLD, &act, &oldAct) < 0) 
    {
        traceLog("%s.%d:ERROR INSTALLING SIGCHLD HANDLER:sigaction FAILED",__SNFILE__, __LINE__);
        return;
    }
    _mainWindow->SetSigChldInstalled(true);    
}

The handler function is:
Code:
void CallWaitChildProcess(int signo) 
{          
    int status, child_val, errStatus;
    extern MainWindow * _mainWindow;


    pid_t retPid;
    retPid=waitpid(g_ChildProcessPid, &status, WNOHANG);
    errStatus=errno;
    if (retPid < 0) 
    {
        traceLog("waitpid failed.Error cause:%s",strerror(errStatus));
        return;
    }

    if(retPid==0)
    {
        traceLog("waitpid returned 0");
        return;
    }


    if (WIFEXITED(status))                /* did child exit normally? */
    {
        child_val = WEXITSTATUS(status); /* get child's exit status */
        traceLog("process pid:%d --> ended normally with value %d\n", g_ChildProcessPid,child_val);
        
       if(true==_mainWindow->GetRecordingON())
       {
           _mainWindow->OnRecorderFinished(child_val);
           return;
       }
    }
}

The traceLog uses va_start,vsprintf and va_end functions,while in the OnRecorderFinished i call some Xt functions and send data to a pipe using the write system call.

Besides,i have read Motif Programming Manual (Volume 6A): 26 - Signal Handling,which explains how to safely handle signals in a motif application by adding a safe handler (i am working in X11 R7.1.1,so fortunately i can use the simpler X11R6 approach).

Now i ask:
1)I am thinking of moving all the "dirty" stuff to this safe handler function (with dirty i mean everything that's not allowed in a handler function).Do you think that's ok?

2)What do you think of the traceLog function?Can it be called from the signal handler?

Thanks again for your precious help!
# 6  
Old 03-20-2009
Quote:
Originally Posted by Zipi
Besides,i have read Motif Programming Manual (Volume 6A): 26 - Signal Handling,which explains how to safely handle signals in a motif application by adding a safe handler (i am working in X11 R7.1.1,so fortunately i can use the simpler X11R6 approach).
I don't see anything special about that code at all. It's just setting up a signal handler, not going about it in any special "safe" way. I think they mean motif-compatible, not 'safe' in any general sense.
Quote:
I am thinking of moving all the "dirty" stuff to this safe handler function (with dirty i mean everything that's not allowed in a handler function).Do you think that's ok?
Is it safe to do non-signal-safe things in a signal handler? No.
Quote:
2)What do you think of the traceLog function? Can it be called from the signal handler?
Depends what it does and how it does it.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. AIX

Apache 2.4 directory cannot display "Last modified" "Size" "Description"

Hi 2 all, i have had AIX 7.2 :/# /usr/IBMAHS/bin/apachectl -v Server version: Apache/2.4.12 (Unix) Server built: May 25 2015 04:58:27 :/#:/# /usr/IBMAHS/bin/apachectl -M Loaded Modules: core_module (static) so_module (static) http_module (static) mpm_worker_module (static) ... (3 Replies)
Discussion started by: penchev
3 Replies

2. Shell Programming and Scripting

Bash script - Print an ascii file using specific font "Latin Modern Mono 12" "regular" "9"

Hello. System : opensuse leap 42.3 I have a bash script that build a text file. I would like the last command doing : print_cmd -o page-left=43 -o page-right=22 -o page-top=28 -o page-bottom=43 -o font=LatinModernMono12:regular:9 some_file.txt where : print_cmd ::= some printing... (1 Reply)
Discussion started by: jcdole
1 Replies

3. UNIX for Dummies Questions & Answers

Using "mailx" command to read "to" and "cc" email addreses from input file

How to use "mailx" command to do e-mail reading the input file containing email address, where column 1 has name and column 2 containing “To” e-mail address and column 3 contains “cc” e-mail address to include with same email. Sample input file, email.txt Below is an sample code where... (2 Replies)
Discussion started by: asjaiswal
2 Replies

4. Shell Programming and Scripting

What is the use of "finger" command & how to use it to kill the online processes ?

Hi there, I am eager to know what exactly is the use of "finger" command & how to use it to kill the online processes ? :b: (1 Reply)
Discussion started by: abhijitpaul0212
1 Replies

5. Shell Programming and Scripting

need to kill a number of processes with name "XYZ" at a time using shell script

Hi, when i grep for the process "XYZ" , there will be some good number of processes with that name, i want to kill all the these processes at a time using shell script? Any help needed for this action. Thanks Regards, Anil (6 Replies)
Discussion started by: anilmanepu
6 Replies

6. Shell Programming and Scripting

will child processes be created when executing "ps"?

Hi I'm trying to write some code to confirm there is only one running instance in memory like below: /usr/ucb/ps -auxww | egrep -v 'grep |vi |tail |more |cat ' | egrep ${SCRIPT_NAME} | egrep -v " \-h| \-help| \-v" But sometimes i found there is some child processes are are created as... (4 Replies)
Discussion started by: sleepy_11
4 Replies

7. Shell Programming and Scripting

awk command to replace ";" with "|" and ""|" at diferent places in line of file

Hi, I have line in input file as below: 3G_CENTRAL;INDONESIA_(M)_TELKOMSEL;SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL My expected output for line in the file must be : "1-Radon1-cMOC_deg"|"LDIndex"|"3G_CENTRAL|INDONESIA_(M)_TELKOMSEL"|LAST|"SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL" Can someone... (7 Replies)
Discussion started by: shis100
7 Replies

8. UNIX for Dummies Questions & Answers

Kill child processes, when parent is "bash"

Consider this simple command line bash -c 'echo $$ ; sleep 10000'This will print the newly created bash PID and sleep for a long time. If I go to another terminal and do something like ps -flax | grep leepI'll see something like 501 92418 91910 0 0:00.00 ttys000 0:00.00 bash -c echo $$... (5 Replies)
Discussion started by: teras
5 Replies

9. UNIX for Dummies Questions & Answers

Explain the line "mn_code=`env|grep "..mn"|awk -F"=" '{print $2}'`"

Hi Friends, Can any of you explain me about the below line of code? mn_code=`env|grep "..mn"|awk -F"=" '{print $2}'` Im not able to understand, what exactly it is doing :confused: Any help would be useful for me. Lokesha (4 Replies)
Discussion started by: Lokesha
4 Replies
Login or Register to Ask a Question