Removed killing php to end the process

This commit is contained in:
Shoghi Cervantes Pueyo
2013-04-03 12:21:12 +02:00
parent e0747a9c44
commit dbc357c266
5 changed files with 6 additions and 23 deletions

View File

@ -25,25 +25,6 @@ the Free Software Foundation, either version 3 of the License, or
*/
function kill($pid){
switch(Utils::getOS()){
case "win":
ob_start();
passthru("%WINDIR%\\System32\\taskkill.exe /F /PID ".((int) $pid));
ob_end_clean();
break;
case "mac":
case "linux":
default:
ob_start();
passthru("kill -9 ".((int) $pid));
ob_end_clean();
}
}
function require_all($path, &$count = 0){
$dir = dir($path."/");
$dirs = array();