Conditions | 2 |
Paths | 2 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
27 | public function __construct($pathname = __FILE__, $maxAcquireNum = 1, $permission = 0666) |
||
28 | { |
||
29 | $ipcKey = $this->generateIpcKey($pathname); |
||
30 | if (!($this->semId = sem_get($ipcKey, $maxAcquireNum, $permission))) { |
||
31 | throw new RuntimeException("Cannot get semaphore identifier"); |
||
32 | } |
||
33 | } |
||
34 | |||
79 |