mirror of
https://github.com/YGGverse/Yo.git
synced 2026-03-31 17:55:35 +00:00
fix semaphore condition #5
This commit is contained in:
parent
a499c363f6
commit
015221eafb
1 changed files with 5 additions and 0 deletions
|
|
@ -3,6 +3,11 @@
|
|||
// Prevent multi-thread execution
|
||||
$semaphore = sem_get(crc32('yo.cli.document.clean'), 1);
|
||||
|
||||
if (false === sem_acquire($semaphore, true))
|
||||
{
|
||||
exit ('process execution locked by another thread!' . PHP_EOL);
|
||||
}
|
||||
|
||||
// Load dependencies
|
||||
require_once __DIR__ . '/../../../vendor/autoload.php';
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue