|
|
|
@ -1857,7 +1857,7 @@
|
|
|
|
|
function file_is_locked($filename) {
|
|
|
|
|
if (function_exists('flock')) {
|
|
|
|
|
error_reporting(0);
|
|
|
|
|
$fp = fopen($filename, "r");
|
|
|
|
|
$fp = fopen(LOCK_DIRECTORY . "/$filename", "r");
|
|
|
|
|
error_reporting(DEFAULT_ERROR_LEVEL);
|
|
|
|
|
if ($fp) {
|
|
|
|
|
if (flock($fp, LOCK_EX | LOCK_NB)) {
|
|
|
|
@ -1873,7 +1873,7 @@
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function make_lockfile($filename) {
|
|
|
|
|
$fp = fopen($filename, "w");
|
|
|
|
|
$fp = fopen(LOCK_DIRECTORY . "/$filename", "w");
|
|
|
|
|
|
|
|
|
|
if (flock($fp, LOCK_EX | LOCK_NB)) {
|
|
|
|
|
return $fp;
|
|
|
|
@ -1883,7 +1883,7 @@
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function make_stampfile($filename) {
|
|
|
|
|
$fp = fopen($filename, "w");
|
|
|
|
|
$fp = fopen(LOCK_DIRECTORY . "/$filename", "w");
|
|
|
|
|
|
|
|
|
|
if (flock($fp, LOCK_EX | LOCK_NB)) {
|
|
|
|
|
fwrite($fp, time() . "\n");
|
|
|
|
@ -1898,7 +1898,7 @@
|
|
|
|
|
function read_stampfile($filename) {
|
|
|
|
|
|
|
|
|
|
error_reporting(0);
|
|
|
|
|
$fp = fopen($filename, "r");
|
|
|
|
|
$fp = fopen(LOCK_DIRECTORY . "/$filename", "r");
|
|
|
|
|
error_reporting (DEFAULT_ERROR_LEVEL);
|
|
|
|
|
|
|
|
|
|
if (flock($fp, LOCK_EX)) {
|
|
|
|
|