Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

mbksetautoackchld(3) [debian man page]

MBKSETAUTOACKCHLD(3)					       MBK UTILITY FUNCTIONS					      MBKSETAUTOACKCHLD(3)

NAME
mbksetautoackchld - Tells Alliance to automatically handle terminaison of child process. ORIGIN
This software belongs to the ALLIANCE CAD SYSTEM developed by the ASIM team at LIP6 laboratory of Universite Pierre et Marie CURIE, in Paris, France. Web : http://asim.lip6.fr/recherche/alliance/ E-mail : alliance-users@asim.lip6.fr SYNOPSYS
#include "mut.h" void mbksetautoackchld( pid ) int pid; PARAMETER
pid Process pid to automatically handle. DESCRIPTION
mbksetautoackchld provide a centralised way to catch terminated child process. Because some Alliance library can create a child process, and user application can do so, there must be a centralized way to get the exit status of process. If the programmer don't want to know the state of a child process, or if he don't want to know what is the terminaison code of such process, he must tells it to Alliance with this call. The programmer should never modify the handler of SIGCHLD. RETURN VALUE
mbksetautoackchld don't return value. SEE ALSO
mbk(1), mbkwaitpid(3). BUG REPORT
This tool is under development at the ASIM department of the LIP6 laboratory. We need your feedback to improve documentation and tools. ASIM
/LIP6 November 20, 2000 MBKSETAUTOACKCHLD(3)

Check Out this Related Man Page

FREECHAIN(3)						       MBK UTILITY FUNCTIONS						      FREECHAIN(3)

NAME
freechain - free a chain_list ORIGIN
This software belongs to the ALLIANCE CAD SYSTEM developed by the ASIM team at LIP6 laboratory of Universite Pierre et Marie CURIE, in Paris, France. Web : http://asim.lip6.fr/recherche/alliance/ E-mail : alliance-users@asim.lip6.fr SYNOPSYS
#include "mut.h" void freechain(pt) chain_list *pt; PARAMETER
pt Pointer to the chain list to be freed DESCRIPTION
freechain frees the chain_list pointed to by pt. All the elements of the list are put back in the list of free blocks. EXAMPLE
#include "mut.h" void free_from(c, i) /* erase list from ith element */ chain_list *c; int i; { chain_list *t; while (i--) c = c->NEXT; t = c->NEXT, c->NEXT = NULL; freechain(t); } SEE ALSO
mbk(1), chain(3), addchain(3), delchain(3). BUG REPORT
This tool is under development at the ASIM department of the LIP6 laboratory. We need your feedback to improve documentation and tools. ASIM
/LIP6 October 1, 1997 FREECHAIN(3)
Man Page

We Also Found This Discussion For You

1. UNIX for Dummies Questions & Answers

KDM child process

Hello all, I got this little problem. I don't know what happen, but its not stopping work but is more of an FYI. I have this funny process running when I do ps -aef (on RedHat AS3 ) server I get this funny child process. root 2345 1 .... /usr/bin/kdm -nodaemon root... (6 Replies)
Discussion started by: larryase
6 Replies