fork and gtk

2000-10-03 Thread Matt Eisemann
Currently I am hjaving a problem with using fork() and the following should explain better what example or what I am trying to do. If the fork() function is used in the function of main(), then 'fork()' is recognized but not if used in another function. With regard to the fork() command. T

Re: fork and gtk

2000-10-03 Thread xvw
0 > From: Matt Eisemann <[EMAIL PROTECTED]> > To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]> > Subject: fork and gtk > > Currently I am hjaving a problem with using fork() and the following should > explain better what example or what I am trying to

Re: fork and gtk

2000-10-03 Thread Jeff Shipman
Have you made sure that you included unistd.h, which you need to use fork()? Many times when you see 'implicit declaration of blah blah...' it's because you're missing the necessary include file for that function. Matt Eisemann wrote: > Currently I am hjaving a problem with using fork() and the

Re: fork and gtk

2000-10-05 Thread Havoc Pennington
Matt Eisemann <[EMAIL PROTECTED]> writes: > seems to compile and work fine. Is this a gtk limitation that it needs to > work in main. And I am not permanently putting fork() in my quit function, > although I did try it and got the same warning so it seems like all > functions are like this.

Re: fork and gtk

2000-10-05 Thread V. Alex Brennen
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Tue, 3 Oct 2000, Jeff Shipman wrote: | Have you made sure that you included unistd.h, which you need | to use fork()? Many times when you see 'implicit declaration | of blah blah...' it's because you're missing the necessary | include file for tha