mirror of
https://github.com/danog/parallel.git
synced 2024-11-27 04:44:56 +01:00
61 lines
1.4 KiB
PHP
61 lines
1.4 KiB
PHP
<?php
|
|
namespace Icicle\Tests\Concurrent\Threading;
|
|
|
|
use Icicle\Concurrent\Sync\Semaphore as SyncSemaphore;
|
|
use Icicle\Concurrent\Threading\Semaphore;
|
|
use Icicle\Concurrent\Threading\Thread;
|
|
use Icicle\Coroutine;
|
|
use Icicle\Loop;
|
|
use Icicle\Tests\Concurrent\Sync\AbstractSemaphoreTest;
|
|
|
|
/**
|
|
* @group threading
|
|
* @requires extension pthreads
|
|
*/
|
|
class SemaphoreTest extends AbstractSemaphoreTest
|
|
{
|
|
public function createSemaphore($locks)
|
|
{
|
|
return new Semaphore($locks);
|
|
}
|
|
|
|
public function testAcquireInMultipleThreads()
|
|
{
|
|
Coroutine\create(function () {
|
|
$this->semaphore = $this->createSemaphore(1);
|
|
|
|
$thread1 = new Thread(function (SyncSemaphore $semaphore) {
|
|
$lock = (yield $semaphore->acquire());
|
|
|
|
usleep(1e5);
|
|
|
|
$lock->release();
|
|
|
|
yield 0;
|
|
}, $this->semaphore);
|
|
|
|
$thread2 = new Thread(function (SyncSemaphore $semaphore) {
|
|
$lock = (yield $semaphore->acquire());
|
|
|
|
usleep(1e5);
|
|
|
|
$lock->release();
|
|
|
|
yield 1;
|
|
}, $this->semaphore);
|
|
|
|
$start = microtime(true);
|
|
|
|
$thread1->start();
|
|
$thread2->start();
|
|
|
|
yield $thread1->join();
|
|
yield $thread2->join();
|
|
|
|
$this->assertGreaterThan(1, microtime(true) - $start);
|
|
});
|
|
|
|
Loop\run();
|
|
}
|
|
}
|