mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
46d22e435f
Closes GH-6148
16 lines
383 B
PHP
16 lines
383 B
PHP
<?php
|
|
|
|
/** @generate-function-entries */
|
|
|
|
final class SysvSemaphore
|
|
{
|
|
}
|
|
|
|
function sem_get(int $key, int $max_acquire = 1, int $perm = 0666, bool $auto_release = true): SysvSemaphore|false {}
|
|
|
|
function sem_acquire(SysvSemaphore $semaphore, bool $nowait = false): bool {}
|
|
|
|
function sem_release(SysvSemaphore $semaphore): bool {}
|
|
|
|
function sem_remove(SysvSemaphore $semaphore): bool {}
|