Added documentation
This commit is contained in:
parent
65d6d45f8c
commit
c30b369a1a
1 changed files with 14 additions and 0 deletions
14
boot.php
14
boot.php
|
@ -1098,6 +1098,11 @@ class App {
|
||||||
return($this->is_friendica_app);
|
return($this->is_friendica_app);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Checks if the maximum load is reached
|
||||||
|
*
|
||||||
|
* @return bool Is the load reached?
|
||||||
|
*/
|
||||||
function maxload_reached() {
|
function maxload_reached() {
|
||||||
|
|
||||||
$maxsysload = intval(get_config('system', 'maxloadavg'));
|
$maxsysload = intval(get_config('system', 'maxloadavg'));
|
||||||
|
@ -1114,6 +1119,15 @@ class App {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Checks if the process is already running
|
||||||
|
*
|
||||||
|
* @param string $taskname The name of the task that will be used for the name of the lockfile
|
||||||
|
* @param string $task The path and name of the php script
|
||||||
|
* @param int $timeout The timeout after which a task should be killed
|
||||||
|
*
|
||||||
|
* @return bool Is the process running?
|
||||||
|
*/
|
||||||
function is_already_running($taskname, $task = "", $timeout = 540) {
|
function is_already_running($taskname, $task = "", $timeout = 540) {
|
||||||
|
|
||||||
$lockpath = get_lockpath();
|
$lockpath = get_lockpath();
|
||||||
|
|
Loading…
Reference in a new issue