My guess is that you're getting a sigpipe. If you try to write to a pipe that has no reader attached, you'll get that and it could close one program. open it rw on one end, or figure out a better syncronization strategy, and that should solve the pipe problem. You could also set up a signal handler to test if thats happening.
On Thu, 6 Jun 2002 06:56:51 -0700 (PDT) aman gupta <[EMAIL PROTECTED]> wrote: > > Hi all > > I am facing a problem in using fork in gtk . > > Actually when i fork a process the error comes > > "Entring shared memory" > > "Pipe broken" > > i have used _exit(0) too but in vain > > help me in solving it > > > > > > --------------------------------- > Do You Yahoo!? > Sign-up for Video Highlights of 2002 FIFA World Cup -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

