1
0
mirror of https://github.com/php/php-src.git synced 2026-04-17 04:51:03 +02:00
Files
archived-php-src/ext/sysvsem/sysvsem.stub.php
Máté Kocsis eab54d2382 Convert resource to object in ext/sysvsem
Closes GH-5508
2020-05-06 15:42:41 +02:00

19 lines
408 B
PHP

<?php
/** @generate-function-entries */
final class Sysvsem
{
}
/**
* @todo use bool for $auto_release
*/
function sem_get(int $key, int $max_acquire = 1, int $perm = 0666, int $auto_release = 1): Sysvsem|false {}
function sem_acquire(Sysvsem $sem_identifier, bool $nowait = false): bool {}
function sem_release(Sysvsem $sem_identifier): bool {}
function sem_remove(Sysvsem $sem_identifier): bool {}