mirror of
https://github.com/php/php-src.git
synced 2026-03-26 17:22:15 +01:00
19 lines
441 B
PHP
19 lines
441 B
PHP
<?php
|
|
|
|
/** @generate-function-entries */
|
|
|
|
final class Shmop {}
|
|
|
|
function shmop_open(int $key, string $flags, int $mode, int $size): Shmop|false {}
|
|
|
|
function shmop_read(Shmop $shmid, int $start, int $count): string {}
|
|
|
|
/** @deprecated */
|
|
function shmop_close(Shmop $shmid): void {}
|
|
|
|
function shmop_size(Shmop $shmid): int {}
|
|
|
|
function shmop_write(Shmop $shmid, string $data, int $offset): int {}
|
|
|
|
function shmop_delete(Shmop $shmid): bool {}
|