make_lockfile: save current PID
This commit is contained in:
parent
44cfa02554
commit
82acc36dba
|
@ -2235,7 +2235,8 @@
|
|||
function make_lockfile($filename) {
|
||||
$fp = fopen(LOCK_DIRECTORY . "/$filename", "w");
|
||||
|
||||
if (flock($fp, LOCK_EX | LOCK_NB)) {
|
||||
if (flock($fp, LOCK_EX | LOCK_NB)) {
|
||||
fwrite($fp, posix_getpid() . "\n");
|
||||
return $fp;
|
||||
} else {
|
||||
return false;
|
||||
|
|
Loading…
Reference in New Issue