You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
560 B
24 lines
560 B
<?php
|
|
/**
|
|
* Cron监控程序
|
|
*
|
|
* @copyright(c)2011,weibo All rights reserved.
|
|
* @author 王勇 <wangyong1@staff.sina.com.cn>
|
|
* @version 3.0 - 2011-11-25
|
|
* @package crontab
|
|
*/
|
|
include_once dirname(__FILE__).'/base/cronBase.php';
|
|
include_once dirname(__FILE__).'/base/dealBase.php';
|
|
|
|
class MonCron extends cronBase {
|
|
|
|
public function setPara() {
|
|
$this->process = $GLOBALS['DAEMON_LIST'];
|
|
$this->procnumlist = $GLOBALS['DAEMON_NUMLIMIT'];
|
|
$this->maxtimelist = $GLOBALS['DAEMON_MAXTIME'];
|
|
|
|
return ;
|
|
}
|
|
}
|
|
|
|
new MonCron;
|
|
|