1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 01:02:25 +01:00
Files
archived-php-src/ext/sysvsem/sysvsem.stub.php
2021-02-15 11:45:26 +01:00

17 lines
419 B
PHP

<?php
/** @generate-class-entries */
/** @strict-properties */
final class SysvSemaphore
{
}
function sem_get(int $key, int $max_acquire = 1, int $permissions = 0666, bool $auto_release = true): SysvSemaphore|false {}
function sem_acquire(SysvSemaphore $semaphore, bool $non_blocking = false): bool {}
function sem_release(SysvSemaphore $semaphore): bool {}
function sem_remove(SysvSemaphore $semaphore): bool {}