aboutsummaryrefslogtreecommitdiffstats
path: root/include/pidfile.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-11-29 19:52:10 -0800
committerfriendica <info@friendica.com>2012-11-29 19:52:10 -0800
commitdd428cf4fc1ec043eea99e8d909cc21c5e214d26 (patch)
treea1f953b07a739ca72a112214ab530a617a59952b /include/pidfile.php
parent061a279ed3e40856c85baf54a27ef89bb860b056 (diff)
downloadvolse-hubzilla-dd428cf4fc1ec043eea99e8d909cc21c5e214d26.tar.gz
volse-hubzilla-dd428cf4fc1ec043eea99e8d909cc21c5e214d26.tar.bz2
volse-hubzilla-dd428cf4fc1ec043eea99e8d909cc21c5e214d26.zip
rm pidfile stuff since we won't need poller locking
Diffstat (limited to 'include/pidfile.php')
-rw-r--r--include/pidfile.php32
1 files changed, 0 insertions, 32 deletions
diff --git a/include/pidfile.php b/include/pidfile.php
deleted file mode 100644
index 47df8d1f4..000000000
--- a/include/pidfile.php
+++ /dev/null
@@ -1,32 +0,0 @@
-<?php
-class pidfile {
- private $_file;
- private $_running;
-
- public function __construct($dir, $name) {
- $this->_file = "$dir/$name.pid";
-
- if (file_exists($this->_file)) {
- $pid = trim(file_get_contents($this->_file));
- if (posix_kill($pid, 0)) {
- $this->_running = true;
- }
- }
-
- if (! $this->_running) {
- $pid = getmypid();
- file_put_contents($this->_file, $pid);
- }
- }
-
- public function __destruct() {
- if ((! $this->_running) && file_exists($this->_file)) {
- unlink($this->_file);
- }
- }
-
- public function is_already_running() {
- return $this->_running;
- }
-}
-?>