X-Git-Url: https://git.wh0rd.org/?a=blobdiff_plain;f=update_daemon2.php;h=68989c8e4a130bcfdd582fa70928a6d12c38a153;hb=884c0a367b17d22d154fdb022c496b3e4ac777a8;hp=53de6b3efa1712321df7046cf1ac47203d8749d7;hpb=0bd6e68a85871bb91cb59a1bf2612e5d92b6eaaa;p=tt-rss.git diff --git a/update_daemon2.php b/update_daemon2.php index 53de6b3e..68989c8e 100644 --- a/update_daemon2.php +++ b/update_daemon2.php @@ -32,13 +32,22 @@ pcntl_signal(SIGCHLD, 'sigchld_handler'); pcntl_signal(SIGINT, 'sigint_handler'); - $lock_handle = make_lockfile("update_daemon.lock"); - - if (!$lock_handle) { - die("error: Can't create lockfile ($lock_filename). ". + if (file_is_locked("update_daemon.lock")) { + die("error: Can't create lockfile. ". "Maybe another daemon is already running.\n"); } + if (!pcntl_fork()) { + $lock_handle = make_lockfile("update_daemon.lock"); + + if (!$lock_handle) { + die("error: Can't create lockfile. ". + "Maybe another daemon is already running.\n"); + } + + while (true) { sleep(100); } + } + while (true) { $next_spawn = $last_checkpoint + SPAWN_INTERVAL - time();