Searched refs:shmop_open (Results 1 – 8 of 8) sorted by relevance
/PHP-8.1/ext/shmop/tests/ |
H A D | 002.phpt | 10 echo PHP_EOL, '## shmop_open function tests ##', PHP_EOL; 14 shmop_open(1338, '', 0644, 1024); 20 shmop_open(1338, 'b', 0644, 1024); 26 var_dump(shmop_open(0, 'a', 0644, 1024)); 30 shmop_open(0, 'a', 0644, 1024); 37 shmop_open(1338, "c", 0666, 0); 44 $shm_id = shmop_open(1338, 'n', 0600, 1024); 53 $shm_id = shmop_open(1339, 'n', 0600, 1024); 63 $shm_id = shmop_open(1340, 'n', 0600, 1024); 72 ## shmop_open function tests ## [all …]
|
H A D | bug81407.phpt | 2 Bug #81407 (shmop_open won't attach and causes php to crash) 11 $a = shmop_open(367504384, 'n', 0664, 262144); 12 $b = shmop_open(367504385, 'n', 0664, 65536); 14 $b = shmop_open(367504385, 'w', 0664, 65536);
|
H A D | shmop_open_private.phpt | 2 shmop_open with IPC_PRIVATE creates private SHM 9 $shm1 = shmop_open(0, 'c', 0777, 1024); 12 $shm2 = shmop_open(0, 'c', 0777, 1024);
|
H A D | 001.phpt | 12 $shm_id = shmop_open($hex_shm_id, "n", 0644, 1024); 32 $shm_id = shmop_open($hex_shm_id, "a", 0644, 1024); 49 $shm_id = shmop_open($hex_shm_id, "w", 0644, 1024);
|
/PHP-8.1/ext/shmop/ |
H A D | shmop_arginfo.h | 36 ZEND_FUNCTION(shmop_open); 45 ZEND_FE(shmop_open, arginfo_shmop_open)
|
H A D | shmop.stub.php | 11 function shmop_open(int $key, string $mode, int $permissions, int $size): Shmop|false {} function
|
H A D | shmop.c | 134 PHP_FUNCTION(shmop_open) in PHP_FUNCTION() argument
|
/PHP-8.1/ |
H A D | NEWS | 1821 . Fixed bug #81407 (shmop_open won't attach and causes php to crash). (cmb)
|
Completed in 13 milliseconds