Sponsored Content
Top Forums Programming Status of child job after parent is killed Post 302123783 by porter on Wednesday 27th of June 2007 08:12:32 AM
Old 06-27-2007
Quote:
Originally Posted by anjul_thegreat
.... in the second parent job invoked if the actual parent is killed.
The only reparenting that occurs is from a dead parent to pid 1. There is no "second parent".

You will need another process that sits between the original parent and child and waits for the original child to finish and perform some IPC to inform who ever is interested that the child has died and what it's exit status is.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

what are parent and child processes all about?

I don't follow what these are... this is what my text says... "When a process is started, a duplicate of that process is created. This new process is called the child and the process that created it is called the parent. The child process then replaces the copy for the code the parent... (1 Reply)
Discussion started by: xyyz
1 Replies

2. Filesystems, Disks and Memory

How hard can it be? ps child/parent

:( Since I'm fairly new to the scene and don't have much experience in shell programming, I decided to check out the net for a useful script or two. What I'm looking for is a script that would let me enter a PID and then show the process tree associated with it. So it would display the (grand-)... (2 Replies)
Discussion started by: velde046
2 Replies

3. UNIX for Dummies Questions & Answers

kill parent and child

Hello all, I have gone through the search and looked at posting about idle users and killing processes. Here is my question I would like to kill an idle user ( which I can do) but how can I asure that all of his process is also killed whit out tracing his inital start PID. I have tried this on a... (4 Replies)
Discussion started by: larry
4 Replies

4. Shell Programming and Scripting

Parent/Child Processes

Hello. I have a global function name func1() that I am sourcing in from script A. I call the function from script B. Is there a way to find out which script called func1() dynamically so that the func1() can report it in the event there are errors? Thanks (2 Replies)
Discussion started by: yoi2hot4ya
2 Replies

5. UNIX for Dummies Questions & Answers

Who is the parent of a killed process ?

Suppose we have the following process tree: init-> ProcessA->processB->processC then I kill processB Who is the parent of the processC? init or the processA (6 Replies)
Discussion started by: Puntino
6 Replies

6. UNIX for Advanced & Expert Users

Child Killing Parent

Hi all, I am writing a script which calls other third party scripts that perform numerous actions. I have no control over these scripts. My problem is, one of these scripts seems to execute and do what it is meant to do, but my calling / parent script always exits at that point. I need to... (4 Replies)
Discussion started by: mark007
4 Replies

7. Shell Programming and Scripting

Running at command - Parent script getting killed

I have a script that calls another script within it that takes about 1 hour to execute. I am noticing that the parent script that calls the child script is getting killed. Does anyone know why? The child script still runs. (3 Replies)
Discussion started by: 3junior
3 Replies

8. Homework & Coursework Questions

Need help with deleting childīs parent and child subprocess

1. The problem statement, all variables and given/known data: I need to make an program that in a loop creates one parent and five children with fork(). The problem i'm trying to solve is how to delete the parent and child of the childīs process. 2. Relevant commands, code, scripts,... (0 Replies)
Discussion started by: WhiteFace
0 Replies

9. Shell Programming and Scripting

forking a child process and kill its parent to show that child process has init() as its parent

Hi everyone i am very new to linux , working on bash shell. I am trying to solve the given problem 1. Create a process and then create children using fork 2. Check the Status of the application for successful running. 3. Kill all the process(threads) except parent and first child... (2 Replies)
Discussion started by: vizz_k
2 Replies

10. Shell Programming and Scripting

Propagate exist status from a child shell script to a parent.

Hi All, I have a parent shell script A and a child shell script B. 1). If a command i.e a mysqdump fails in shell script B fails then I trap the error with this code if ] then func_exit "Failed to export the cleaned DB1.${MYDBNAME} database to the ${MYARCHIVEDIR} directory"... (1 Reply)
Discussion started by: daveu7
1 Replies
XtUnmanageChildren()													      XtUnmanageChildren()

Name
  XtUnmanageChildren - remove a list of children from a parent widget's managed list.

Synopsis
  void XtUnmanageChildren(children, num_children)
	 WidgetList children;
	 Cardinal num_children;

Inputs
  children   Specifies an array of child widgets.  Each child must be of class RectObj or any subclass thereof.

  num_children
	     Specifies the number of elements in children.

Description
  XtUnmanageChildren()	unmaps	the  specified	widgets and removes them from their parent's geometry management.  The widgets will disappear
  from the screen, and (depending on its parent) may no longer have screen space allocated for them.

  Each of the widgets in the children array must have the same parent.

  See the "Algorithm" section below for full details of the widget unmanagement procedure.

Usage
  Unmanaging widgets is the usual method for temporarily making them invisible.  They can be re-managed with XtManageChildren().

  You can unmap a widget, but leave it under geometry management by calling XtUnmapWidget().  You  can	destroy  a  widget's  window  without
  destroying the widget by calling XtUnrealizeWidget().  You can destroy a widget completely with XtDestroyWidget().

  If  you  are	only going to unmanage a single widget, it is more convenient to call XtUnmanageChild().  It is often more convenient to call
  XtUnmanageChild() several times than it is to declare and initialize an array of widgets to pass to XtUnmanageChildren().  Calling XtUnman-
  ageChildren() is more efficient, however, because it only calls the parent's change_managed() method once.

Algorithm
  XtUnmanageChildren() performs the following:

  o  Issues an error if the children do not all have the same parent or if the parent is not a subclass of compositeWidgetClass.

  o  Returns immediately if the common parent is being destroyed; otherwise, for each unique child on the list, XtUnmanageChildren() performs
     the following:

     -	Ignores the child if it already is unmanaged or is being destroyed.

     -	Otherwise, if the child is realized, it makes it nonvisible by unmapping it.

  o  Calls the change_managed() method of the widgets' parent if the parent is realized.

Structures
  The WidgetList type is simply an array of widgets:

     typedef Widget *WidgetList;

See Also
  XtDestroyWidget(1), XtIsManaged(1), XtManageChild(1), XtManageChildren(1), XtUnmanageChild(1).

Xt - Geometry Management												      XtUnmanageChildren()
All times are GMT -4. The time now is 02:05 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy