Sponsored Content
Top Forums Programming "No child processes" and waitpif Post 302296663 by Zipi on Wednesday 11th of March 2009 02:36:20 PM
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?
 

9 More Discussions You Might Find Interesting

1. 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

2. 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

3. 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

4. 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

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

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

7. 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

8. 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

9. 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
SIGACTION(2)							System Calls Manual						      SIGACTION(2)

NAME
sigaction, signal - manage signal state and handlers SYNOPSIS
#include <signal.h> int sigaction(int sig, const struct sigaction *act, struct sigaction *oact) void (*signal(int sig, void (*handler)(int)))(int); DESCRIPTION
Sigaction() is used to examine, set, or modify the attributes of a signal. The argument sig is the signal in question. The act argument points to a structure containing the new attributes of the signal, the structure pointed to by oact will receive the old attributes that were in effect before the call. The act and oact arguments may be NULL to indicate that either no new attributes are to be set, or that the old attributes are not of interest. The structure containing the signal attributes is defined in <signal.h> and looks like this: struct sigaction { void (*sa_handler)(int sig); sigset_t sa_mask; int sa_flags; }; The sa_handler field contains the address of a signal handler, a function that is called when the process is signalled, or one of these special constants: SIG_DFL Default signal handling is to be performed. This usually means that the process is killed, but some signals may be ignored by default. SIG_IGN Ignore the signal. The sa_mask field indicates a set of signals that must be blocked when the signal is being handled. Whether the signal sig itself is blocked when being handled is not controlled by this mask. The mask is of a "signal set" type that is to be manipulated by the sigset(3) functions. How the signal is handled precisely is specified by bits in sa_flags. If none of the flags is set then the handler is called when the sig- nal arrives. The signal is blocked during the call to the handler, and unblocked when the handler returns. A system call that is inter- rupted returns -1 with errno set to EINTR. The following bit flags can be set to modify this behaviour: SA_RESETHAND Reset the signal handler to SIG_DFL when the signal is caught. SA_NODEFER Do not block the signal on entry to the handler. SA_COMPAT Handle the signal in a way that is compatible with the the old signal() call. The old signal() signal system call sets a signal handler for a given signal and returns the old signal handler. No signals are blocked, the flags are SA_RESETHAND | SA_NODEFER | SA_COMPAT. New code should not use signal(). Note that signal() and all of the SA_* flags are Minix extensions. Signal handlers are reset to SIG_DFL on an execve(2). Signals that are ignored stay ignored. Signals Minix knows about the following signals: signal num notes description SIGHUP 1 k Hangup SIGINT 2 k Interrupt (usually DEL or CTRL-C) SIGQUIT 3 kc Quit (usually CTRL-) SIGILL 4 kc Illegal instruction SIGTRAP 5 xkc Trace trap SIGABRT 6 kc Abort program SIGFPE 8 k Floating point exception SIGKILL 9 k Kill SIGUSR1 10 k User defined signal #1 SIGSEGV 11 kc Segmentation fault SIGUSR2 12 k User defined signal #2 SIGPIPE 13 k Write to a pipe with no reader SIGALRM 14 k Alarm clock SIGTERM 15 k Terminate (default for kill(1)) SIGCHLD 17 pvi Child process terminated SIGCONT 18 p Continue if stopped SIGSTOP 19 ps Stop signal SIGTSTP 20 ps Interactive stop signal SIGTTIN 21 ps Background read SIGTTOU 22 ps Background write SIGWINCH 23 xvi Window size change The letters in the notes column indicate: k The process is killed if the signal is not caught. c The signal causes a core dump. i The signal is ignored if not caught. v Only Minix-vmd implements this signal. x Minix extension, not defined by POSIX. p These signals are not implemented, but POSIX requires that they are defined. s The process should be stopped, but is killed instead. The SIGKILL signal cannot be caught or ignored. The SIGILL and SIGTRAP signals cannot be automatically reset. The system silently enforces these restrictions. This may or may not be reflected by the attributes of these signals and the signal masks. Types POSIX prescribes that <sys/types.h> has the following definition: typedef int (*sighandler_t)(int) With this type the following declarations can be made: sighandler_t sa_handler; sighandler_t signal(int sig, sighandler_t handler); This may help you to understand the earlier declarations better. The sighandler_t type is also very useful in old style C code that is compiled by a compiler for standard C. SEE ALSO
kill(1), kill(2), pause(2), sigprocmask(2), sigsuspend(2), sigpending(2), sigset(3). DIAGNOSTICS
Sigaction() returns 0 on success or -1 on error. Signal() returns the old handler on success or SIG_ERR on error. The error code may be: EINVAL Bad signal number. EFAULT Bad act or oact addresses. AUTHOR
Kees J. Bot (kjb@cs.vu.nl) SIGACTION(2)
All times are GMT -4. The time now is 07:22 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy