Re: [PHP-DEV] Bug #10744: session_start() serializes exec

2001-05-10 Thread Oleg Makarenko
Try this in a script: ?php exec( /bin/sleep 30 /dev/null 21 /dev/null ) ; echo Done !! ; ? Now call it from the browser several time (Reload button). If you type a ps ax command you will see several sleep 30 processes. Wait all the processes to stop. Now put session_start() as

[PHP-DEV] Bug #10744: session_start() serializes exec

2001-05-09 Thread fperillo
From: [EMAIL PROTECTED] Operating system: Linux Mandrake 7.2 PHP version: 4.0.4pl1 PHP Bug Type: *Session related Bug description: session_start() serializes exec Try this in a script: ?php exec( /bin/sleep 30 /dev/null 21 /dev/null ) ; echo Done !! ; ? Now call it