Searched refs:shmop_open (Results 1 – 9 of 9) sorted by relevance
/PHP-8.0/ext/shmop/tests/ |
H A D | 002.phpt | 14 echo PHP_EOL, '## shmop_open function tests ##', PHP_EOL; 18 shmop_open(1338, '', 0644, 1024); 24 shmop_open(1338, 'b', 0644, 1024); 30 var_dump(shmop_open(null, 'a', 0644, 1024)); 34 shmop_open(null, 'a', 0644, 1024); 41 shmop_open(1338, "c", 0666, 0); 48 $shm_id = shmop_open(1338, 'n', 0600, 1024); 57 $shm_id = shmop_open(1339, 'n', 0600, 1024); 67 $shm_id = shmop_open(1340, 'n', 0600, 1024); 76 ## shmop_open function tests ## [all …]
|
H A D | bug81407.phpt | 2 Bug #81407 (shmop_open won't attach and causes php to crash) 10 $a = shmop_open(367504384, 'n', 0664, 262144); 11 $b = shmop_open(367504385, 'n', 0664, 65536); 13 $b = shmop_open(367504385, 'w', 0664, 65536);
|
H A D | shmop_open_private.phpt | 2 shmop_open with IPC_PRIVATE creates private SHM 11 $shm1 = shmop_open(0, 'c', 0777, 1024); 14 $shm2 = shmop_open(0, 'c', 0777, 1024);
|
H A D | 001.phpt | 16 $shm_id = shmop_open($hex_shm_id, "n", 0644, 1024); 36 $shm_id = shmop_open($hex_shm_id, "a", 0644, 1024); 53 $shm_id = shmop_open($hex_shm_id, "w", 0644, 1024);
|
/PHP-8.0/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 | 7 function shmop_open(int $key, string $mode, int $permissions, int $size): Shmop|false {} function
|
H A D | shmop.c | 140 PHP_FUNCTION(shmop_open) in PHP_FUNCTION() argument
|
/PHP-8.0/ |
H A D | NEWS | 639 . Fixed bug #81407 (shmop_open won't attach and causes php to crash). (cmb)
|
H A D | UPGRADING | 1101 . shmop_open() will now return a Shmop object rather than a resource. Return
|
Completed in 20 milliseconds