Re: [PHP] PHP process control

2007-06-08 Thread Richard Lynch
I believe that in CGI or CLI process you'd be okay, as the "fork" happens in its own process, and can only mess up PHP, which is fairly safe. In PHP as Module, you risk thread-safety issues in a big way with any PHP extensions that aren't thread-safe. And nobody is 100% sure on any of the extensi

Re: [PHP] PHP process control

2007-06-07 Thread Stut
Nathan Nobbe wrote: I was reading the handbook on the topic of Unix process control. The first thing it says is: Process Control support in PHP implements the Unix style of process creation, program execution, signal handling and process termination. Process Control should not be enabled withi

[PHP] PHP process control

2007-06-07 Thread Nathan Nobbe
I was reading the handbook on the topic of Unix process control. The first thing it says is: Process Control support in PHP implements the Unix style of process creation, program execution, signal handling and process termination. Process Control should not be enabled within a web server environ

[PHP] PHP process control

2007-06-07 Thread Nathan Nobbe
I was reading the handbook on the topic of Unix process control. The first thing it says is: Process Control support in PHP implements the Unix style of process creation, program execution, signal handling and process termination. Process Control should not be enabled within a web server environ