$maxsysload) { logger('system: load ' . $load[0] . ' too high. Pumpio sync deferred to next scheduled run.'); return; } } // This is deprecated with the worker if (function_exists("get_lockpath")) { $lockpath = get_lockpath(); if ($lockpath != '') { $pidfile = new pidfile($lockpath, 'pumpio_sync'); if($pidfile->is_already_running()) { logger("Already running"); if ($pidfile->running_time() > 9*60) { $pidfile->kill(); logger("killed stale process"); // Calling a new instance proc_run('php','addon/pumpio/pumpio_sync.php'); } exit; } } } pumpio_sync($a); } if (array_search(__file__,get_included_files())===0){ pumpio_sync_run($_SERVER["argv"],$_SERVER["argc"]); killme(); } ?>