Searched refs:shmop_open (Results 1 – 8 of 8) sorted by relevance
/php-src/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 | gh14537.phpt | 15 $shm_id1 = shmop_open($shm_key, 'c', 0644, strlen($str)); 19 $shm_id2 = shmop_open($shm_key, 'c', 0644, strlen($str) + 10); 26 Warning: shmop_open(): Unable to attach or create shared memory segment "%s" in %s on line %d
|
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-src/ext/shmop/ |
H A D | shmop_arginfo.h | 35 ZEND_FUNCTION(shmop_open); 43 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 | 137 PHP_FUNCTION(shmop_open) in PHP_FUNCTION() argument
|
Completed in 10 milliseconds