Sponsored Content
Top Forums Shell Programming and Scripting exiting a child without stopping the parent Post 302136821 by madpenguin on Wednesday 19th of September 2007 10:45:55 PM
Old 09-19-2007
Hey... exit 0 does work. The error I get is related to a later command in the parent but I thought it was coming from the child. You are dead right about returning the exit status.

Ughh... One problem down but another one crops up... Smilie

Thanks again guys for your help.
 

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

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

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

5. Programming

To share fd between parent and child

i used function fork(). so i made two process. parent process accepted socket fd and writing to shared memory. then now. how can child process share parent's socket fd? is this possible? Thanks in advance (1 Reply)
Discussion started by: andrew.paul
1 Replies

6. Shell Programming and Scripting

Parent Script exiting with child script

PARENT SCRIPT #!/bin/ksh # . $HOME/.profile . /etl/estdm2/DEV/scripts/DM_ENV_VARS.ksh DEV DB echo "CALLING CHILD SCRIPT" . /${SCRIPT_DIR}/DM_CHild.ksh -x HRDATA.dat -e $sEnv -d Wait_Time *****THE PARENT SCRIPT EXITS HERE ******** *****whether the file is found or not******* ... (2 Replies)
Discussion started by: sumeet
2 Replies

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

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

9. UNIX for Dummies Questions & Answers

parent and child directory

does anyone know how to check in an 'if' statement if a particular directory is a child directory of a particular directory? help ~ (2 Replies)
Discussion started by: ymc1g11
2 Replies

10. Shell Programming and Scripting

Child exiting and not returning to parent script

I am having a parent scripts which reads a file with child scripts name. I need to read one by one child script , execute it and 1. If child script fails send mail to the team with the log file 2. If the child script executes fine then proceed with the next child script execution. #!... (3 Replies)
Discussion started by: nw2unx123
3 Replies
XtManageChildren(3Xt)						     MIT X11R4						     XtManageChildren(3Xt)

Name
       XtManageChildren, XtManageChild, XtUnmanageChildren, XtUnmanageChild - manage and unmanage children

Syntax
       typedef Widget *WidgetList;

       void XtManageChildren(children, num_children)
	  WidgetList children;
	  Cardinal num_children;

       void XtManageChild(child)
	  Widget child;

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

       void XtUnmanageChild(child)
	  Widget child;

Arguments
       child	 Specifies the child.

       children  Specifies a list of child widgets.

       num_children
		 Specifies the number of children.

Description
       The function 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

       o    Returns immediately if the common parent is being destroyed; otherwise, for each unique child on the list, ignores the child if it
	    already is managed or is being destroyed and marks it if not.

       o    If the parent is realized and after all children have been marked, it makes some of the newly managed children viewable:

	    -	 Calls the change_managed routine of the widgets' parent.

	    -	 Calls on each previously unmanaged child that is unrealized.

	    -	 Maps each previously unmanaged child that has map_when_managed

       Managing children is independent of the ordering of children and independent of creating and deleting children.	The layout routine of the
       parent should consider children whose managed field is and should ignore all other children.  Note that some composite widgets, especially
       fixed boxes, call from their insert_child procedure.

       If the parent widget is realized, its change_managed procedure is called to notify it that its set of managed children has changed.  The
       parent can reposition and resize any of its children.  It moves each child as needed by calling which first updates the x and y fields and
       then calls if the widget is realized.

       The function constructs a of length one and calls

       The function 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

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

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

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

       o    Calls the change_managed routine of the widgets' parent after all children have been marked if the parent is realized.

       does not destroy the children widgets.  Removing widgets from a parent's managed set is often a temporary banishment, and, some time later,
       you may manage the children again.

       The function constructs a widget list of length one and calls

See Also
       XtMapWidget(3Xt), XtRealizeWidget(3Xt)
       X Window System Toolkit: The Complete Programmer's Guide and Specification, Paul J. Asente and Ralph Swick
       X Window System: The Complete Reference, Second Edition, Robert W. Scheifler and James Gettys

															     XtManageChildren(3Xt)
All times are GMT -4. The time now is 03:38 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy