mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
21 lines
592 B
PHP
21 lines
592 B
PHP
<?php
|
|
|
|
/** @generate-function-entries */
|
|
|
|
final class SysvSharedMemory
|
|
{
|
|
}
|
|
|
|
function shm_attach(int $key, ?int $memsize = null, int $perm = 0666): SysvSharedMemory|false {}
|
|
|
|
function shm_detach(SysvSharedMemory $shm): bool {}
|
|
|
|
function shm_has_var(SysvSharedMemory $shm, int $variable_key): bool {}
|
|
|
|
function shm_remove(SysvSharedMemory $shm): bool {}
|
|
|
|
function shm_put_var(SysvSharedMemory $shm, int $variable_key, mixed $variable): bool {}
|
|
|
|
function shm_get_var(SysvSharedMemory $shm, int $variable_key): mixed {}
|
|
|
|
function shm_remove_var(SysvSharedMemory $shm, int $variable_key): bool {}
|