]> git.mxchange.org Git - friendica.git/commitdiff
Added documentation
authorMichael Vogel <icarus@dabo.de>
Tue, 8 Mar 2016 21:42:37 +0000 (22:42 +0100)
committerMichael Vogel <icarus@dabo.de>
Tue, 8 Mar 2016 21:42:37 +0000 (22:42 +0100)
boot.php

index 4d57d21e62d92ba3cb72f6b05c753df3fa6430b9..43f69fc1151ba26945a9fc5c4f4ec457b3cbc485 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -1098,6 +1098,11 @@ class App {
                return($this->is_friendica_app);
        }
 
+       /**
+        * @brief Checks if the maximum load is reached
+        *
+        * @return bool Is the load reached?
+        */
        function maxload_reached() {
 
                $maxsysload = intval(get_config('system', 'maxloadavg'));
@@ -1114,6 +1119,15 @@ class App {
                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) {
 
                $lockpath = get_lockpath();