Re: [PHP] pcntl functions for task manager - comments?

2002-06-02 Thread Clay Loveless
; // wait two seconds before checking queue again sleep(2); unset($jobs_waiting); } function sig_handler($signo) { // blah blah } -Clay From: Clay Loveless [EMAIL PROTECTED] Date: Sat, 01 Jun 2002 12:38:18 -0700 To: PHP-General [EMAIL PROTECTED] Subject: [PHP] pcntl functions

[PHP] pcntl functions for task manager - comments?

2002-06-01 Thread Clay Loveless
I'm experimenting with PHP's pcntl_* functions using the PHP cgi ... I've never written a daemon before, and there doesn't seem to be a lot of information out there about how to do this with the pcntl functions. So, I've read what I can find on the subject as it deals with UNIX programming. The