sysvsem.stub.php 444 B

12345678910111213141516171819
  1. <?php
  2. /** @generate-class-entries */
  3. /**
  4. * @strict-properties
  5. * @not-serializable
  6. */
  7. final class SysvSemaphore
  8. {
  9. }
  10. function sem_get(int $key, int $max_acquire = 1, int $permissions = 0666, bool $auto_release = true): SysvSemaphore|false {}
  11. function sem_acquire(SysvSemaphore $semaphore, bool $non_blocking = false): bool {}
  12. function sem_release(SysvSemaphore $semaphore): bool {}
  13. function sem_remove(SysvSemaphore $semaphore): bool {}