in reply to Re: Re: Re: Re: Forking in a CGI program on Windows systems
in thread Forking in a CGI program on Windows systems

From perlfaq8:

How come exec() doesn't return?
Because that's what it does: it replaces your currently running program with a different one. If you want to keep going (as is probably the case if you're asking this question) use system() instead.

So your current program would completely finish if you put the exec() at the end...

  • Comment on Re: Re: Re: Re: Re: Forking in a CGI program on Windows systems