Re: [PHP-DEV] php_fork();

2004-11-14 Thread Wez Furlong
If they paid me (or the company I work for) to do it, I would. On Mon, 15 Nov 2004 02:28:45 +0200, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Heh, ActiveState did it after they received funding from Microsoft. > Guess that's not gonna happen with PHP. Ever. -- PHP Internals - PHP Runtime Dev

Re: [PHP-DEV] php_fork();

2004-11-14 Thread [EMAIL PROTECTED]
Heh, ActiveState did it after they received funding from Microsoft. Guess that's not gonna happen with PHP. Ever. On Sun, 14 Nov 2004 19:25:09 -0500, Wez Furlong <[EMAIL PROTECTED]> wrote: > On Sun, 14 Nov 2004 22:05:16 +0200, [EMAIL PROTECTED] <[EMAIL PROTECTED]> > wrote: > > My point exactly.

Re: [PHP-DEV] php_fork();

2004-11-14 Thread Wez Furlong
On Sun, 14 Nov 2004 22:05:16 +0200, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > My point exactly. > However, I *know* that perl emulates it using threads. Which we don't support. > But, when thinking of it, Cygwin emulates fork() by copying the > address space of a process to a newly created

Re: [PHP-DEV] php_fork();

2004-11-14 Thread [EMAIL PROTECTED]
My point exactly. However, I *know* that perl emulates it using threads. But, when thinking of it, Cygwin emulates fork() by copying the address space of a process to a newly created process. It's a bit slow, but at least it works. Guess getting into the kernel mode driver land to create *actual*

Re: [PHP-DEV] php_fork();

2004-11-14 Thread Aaron Wormus
Derick Rethans wrote: On Sun, 14 Nov 2004, [EMAIL PROTECTED] wrote: Can't it be emulated? The *concept* doesn't exist on Windows, so no. Perl emulates it pretty nicely on windows http://www.perldoc.com/perl5.8.4/pod/perlfork.html Aaron

Re: [PHP-DEV] php_fork();

2004-11-14 Thread overight
Ok, thanks to all :) Andrey Hristov a écrit : Try pcntl_fork() and the ext/pcntl extension (*nix only but I heard someting about cygphp which uses Cygwin and has ext/pcntl for windows). Andrey overight wrote: Hello What about fork() in php ? I have tried to understand c language yesterday, and I

[PHP-DEV] php_fork();

2004-11-14 Thread overight
Hello What about fork() in php ? I have tried to understand c language yesterday, and I have write that in /ext/standard/basic_functions.c: PHP_FUNCTION(php_fork){ fork(); } (and a few lines to decalare this function) And it's work ! Now I can fork my php scripts with the php_fork() function

Re: [PHP-DEV] php_fork();

2004-11-14 Thread Derick Rethans
On Sun, 14 Nov 2004, [EMAIL PROTECTED] wrote: > The *concept* of copying the address space of a process to another > process doesn't exist? How does the Win32 loader work? No clue - it's not open source you know. But it does NOT fork something. > Btw, I'm not aware of if the PHP engine is multit

Re: [PHP-DEV] php_fork();

2004-11-14 Thread [EMAIL PROTECTED]
The *concept* of copying the address space of a process to another process doesn't exist? How does the Win32 loader work? Btw, I'm not aware of if the PHP engine is multithreaded, but if it's possible to run multiple scripts in multiple threads of the same process, that could do the trick. On Sun

Re: [PHP-DEV] php_fork();

2004-11-14 Thread Derick Rethans
On Sun, 14 Nov 2004, [EMAIL PROTECTED] wrote: > Can't it be emulated? The *concept* doesn't exist on Windows, so no. Derick -- Derick Rethans http://derickrethans.nl | http://ez.no | http://xdebug.org -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.p

Re: [PHP-DEV] php_fork();

2004-11-14 Thread Derick Rethans
On Sun, 14 Nov 2004, [EMAIL PROTECTED] wrote: > Any chance to see fork() support for Win32 in the near future? No, win32 has no such concept. Derick -- Derick Rethans http://derickrethans.nl | http://ez.no | http://xdebug.org -- PHP Internals - PHP Runtime Development Mailing List To unsubsc

Re: [PHP-DEV] php_fork();

2004-11-14 Thread [EMAIL PROTECTED]
Can't it be emulated? On Sun, 14 Nov 2004 16:53:53 +0100 (CET), Derick Rethans <[EMAIL PROTECTED]> wrote: > On Sun, 14 Nov 2004, [EMAIL PROTECTED] wrote: > > > Any chance to see fork() support for Win32 in the near future? > > No, win32 has no such concept. > > > > Derick > > -- > Derick R

Re: [PHP-DEV] php_fork();

2004-11-14 Thread Andrey Hristov
PROTECTED]>; <[EMAIL PROTECTED]> Sent: Sunday, November 14, 2004 5:49 PM Subject: Re: [PHP-DEV] php_fork(); Any chance to see fork() support for Win32 in the near future? On Sun, 14 Nov 2004 16:48:14 +0100 (CET), Derick Rethans <[EMAIL PROTECTED]> wrote: On Sun, 14 Nov 2004, overigh

Re: [PHP-DEV] php_fork();

2004-11-14 Thread Steph
It's not easy to support something that doesn't exist... - Original Message - From: <[EMAIL PROTECTED]> To: "Derick Rethans" <[EMAIL PROTECTED]> Cc: "overight" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Sunday, November 14, 2

Re: [PHP-DEV] php_fork();

2004-11-14 Thread [EMAIL PROTECTED]
Any chance to see fork() support for Win32 in the near future? On Sun, 14 Nov 2004 16:48:14 +0100 (CET), Derick Rethans <[EMAIL PROTECTED]> wrote: > On Sun, 14 Nov 2004, overight wrote: > > > Hello > > > > What about fork() in php ? > > http://nl.php.net/pcntl_fork > > Derick > > -- > Derick

Re: [PHP-DEV] php_fork();

2004-11-14 Thread Andrey Hristov
Try pcntl_fork() and the ext/pcntl extension (*nix only but I heard someting about cygphp which uses Cygwin and has ext/pcntl for windows). Andrey overight wrote: Hello What about fork() in php ? I have tried to understand c language yesterday, and I have write that in /ext/standard/basic_functi

Re: [PHP-DEV] php_fork();

2004-11-14 Thread Paul G
- Original Message - From: <[EMAIL PROTECTED]> To: "Derick Rethans" <[EMAIL PROTECTED]> Cc: "overight" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Sunday, November 14, 2004 10:55 AM Subject: Re: [PHP-DEV] php_fork(); > Can't it be

Re: [PHP-DEV] php_fork();

2004-11-14 Thread Derick Rethans
On Sun, 14 Nov 2004, overight wrote: > Hello > > What about fork() in php ? http://nl.php.net/pcntl_fork Derick -- Derick Rethans http://derickrethans.nl | http://ez.no | http://xdebug.org -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub

Re: [PHP-DEV] php_fork();

2004-11-14 Thread Sean Coates
http://php.net/pcntl S overight wrote: Hello What about fork() in php ? I have tried to understand c language yesterday, and I have write that in /ext/standard/basic_functions.c: PHP_FUNCTION(php_fork){ fork(); } (and a few lines to decalare this function) And it's work ! Now I can fork my ph