Sponsored Content
Full Discussion: Parent,child wait,signal
Top Forums Programming Parent,child wait,signal Post 302528245 by Corona688 on Monday 6th of June 2011 05:47:18 PM
Old 06-06-2011
Quote:
Originally Posted by Cuervo
Corona688 i think you mistook FIFO with pipes...right?
Nope. Look at what I said more closely. I never said anything about writing to the fifo, but what happens when you open it.

Lemme write you a little example.

Code:
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>

int main(void)
{
        pid_t pid;
        int fd;
        mkfifo("./myfifo", 0660);

        pid=fork();
        if(pid == 0)    // child code
        {
                fprintf(stderr, "C\tWaiting 3 seconds\n");
                sleep(3);
                fprintf(stderr, "C\tOpening fifo\n");
                fd=open("./myfifo", O_RDONLY);
                fprintf(stderr, "C\tOpening fifo\n");
                fd=open("./myfifo", O_RDONLY);
                exit(0);
        }
        else if(pid > 0)        // parent code
        {
                fprintf(stderr, "P\tOpening fifo\n");
                fd=open("./myfifo", O_WRONLY);
                fprintf(stderr, "P\tFIFO opened\n");
                exit(0);
        }

        perror("Couldn't fork");
        return(1);
}

The parent creates the fifo, then creates the child, then tries to immediately open the fifo.

The child waits 3 seconds before opening the fifo, forcing the parent to wait 3 seconds as well. The fifo will finish opening only when there's something trying to open both ends.
This User Gave Thanks to Corona688 For This Post:
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

how to make a parent wait on a child shells running in background?

Hi I have a shell script A which calls another 10 shell scripts which run in background. How do i make the parent script wait for the child scripts complete, or in other words, i must be able to do a grep of parent script to find out if the child scripts are still running. My Code: ... (1 Reply)
Discussion started by: albertashish
1 Replies

2. Programming

How can I make the parent thread wait

Hi All, I will be glad if you could help me resolve this problem. I have created two detachable threads and wanted to them execute independent of the parent thread ( the main task which creates the detachable threads). But I see no output coming from the execution of two detachable threads.... (4 Replies)
Discussion started by: jayfriend
4 Replies

3. Shell Programming and Scripting

How to make the parent process to wait for the child process

Hi All, I have two ksh script. 1st script calls the 2nd script and the second script calls an 'C' program. I want 1st script to wait until the 'C' program completes. I cant able to get the process id for the 'C' program (child process) to make the 1st script to wait for the second... (7 Replies)
Discussion started by: sennidurai
7 Replies

4. UNIX for Dummies Questions & Answers

Sending signal from child to parent process!

Hi All, I facing a problem in handling signals between parent process communication. I am trying to send a signal(SIGINT) from child to parent. I am using kill function to do so and I am trying to read the signal using sigaction(). But the program is ending abruptly and I am not able to figure out... (4 Replies)
Discussion started by: vkn_1985
4 Replies

5. Programming

Parent process starts before the child using signal, in C

Hi, i want that the parent process start before the child, this code doesn't work, if the child start before the parent it wait for signal, then the father send the signal SIGALRM and the child catch it and call printf; else the father call printf and send the signal to the child that call its... (1 Reply)
Discussion started by: blob84
1 Replies

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

7. Emergency UNIX and Linux Support

signal between parent process and child process

Hello, everyone. Here's a program: pid_t pid = fork(); if (0 == pid) // child process { execvp ...; } I send a signal (such as SIGINT) to the parent process, the child process receive the signal as well as the parent process. However I don't want to child process to receive the... (7 Replies)
Discussion started by: jackliang
7 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. Shell Programming and Scripting

parent process needs to wait

I have two scripts lets say A.expect and B.sh needs to be executed. I am executing B.sh from A.expect where B.sh has sleep command. My problem is that when B.sh encounters the sleep command my A.expect starts executing and exits. but my A.expect should execute only after completing B.sh. Is... (3 Replies)
Discussion started by: priya@2012
3 Replies

10. Shell Programming and Scripting

How make parent to wait from child process?

Hi all, I am starting mgen5 for sometime depends on input from a file, in a child process. now I want to make parent to wait in this child process till mgen5 finishes, or timeout happens. could anyone please tell me how to make parent to wait in child process in shell script? thanks... (2 Replies)
Discussion started by: girijajoshi
2 Replies
XmObjectAtPoint(library call)											     XmObjectAtPoint(library call)

NAME
XmObjectAtPoint -- A toolkit function that determines which child intersects or comes closest to a specified point SYNOPSIS
#include <Xm/Xm.h> Widget XmObjectAtPoint( Widget widget, Position x, Position y); DESCRIPTION
XmObjectAtPoint searches the child list of the specified manager widget and returns the child most closely associated with the specified x,y coordinate pair. For the typical Motif manager widget, XmObjectAtPoint uses the following rules to determine the returned object: o If one child intersects x,y, XmObjectAtPoint returns the widget ID of that child. o If more than one child intersects x,y, XmObjectAtPoint returns the widget ID of the visible child. o If no child intersects x,y, XmObjectAtPoint returns NULL. The preceding rules are only general. In fact, each manager widget is free to define "most closely associated" as it desires. For example, if no child intersects x,y, a manager might return the child closest to x,y. widget Specifies a manager widget. x Specifies the x-coordinate about which you are seeking child information. The x-coordinate must be specified in pixels, relative to the left side of manager. y Specifies the y-coordinate about which you are seeking child information. The y-coordinate must be specified in pixels, relative to the top side of manager. RETURN
Returns the child of manager most closely associated with x,y. If none of its children are sufficiently associated with x,y, returns NULL. RELATED
XmManager(3). XmObjectAtPoint(library call)
All times are GMT -4. The time now is 12:20 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy