Searched refs:shmop_open (Results 1 – 7 of 7) sorted by relevance
/PHP-7.3/ext/shmop/tests/ |
H A D | 002.phpt | 20 echo PHP_EOL, '## shmop_open function tests ##'; 22 var_dump($shm_id = shmop_open()); 25 var_dump(shmop_open($hex_shm_id(), '', 0644, 1024)); 28 var_dump(shmop_open($hex_shm_id(), 'b', 0644, 1024)); 31 var_dump(shmop_open(null, 'a', 0644, 1024)); 34 var_dump(shmop_open($hex_shm_id(), "c", 0666, 0)); 41 $shm_id = shmop_open($hex_shm_id(), 'n', 0600, 1024); 46 $shm_id = shmop_open($hex_shm_id(), 'n', 0600, 1024); 55 $shm_id = shmop_open($hex_shm_id(), 'n', 0600, 1024); 72 ## shmop_open function tests ## [all …]
|
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); 38 $shm_id = shmop_open($hex_shm_id, "a", 0644, 1024); 53 $shm_id = shmop_open($hex_shm_id, "w", 0644, 1024);
|
/PHP-7.3/ext/shmop/ |
H A D | php_shmop.h | 33 PHP_FUNCTION(shmop_open);
|
H A D | shmop.c | 83 PHP_FE(shmop_open, arginfo_shmop_open) 146 PHP_FUNCTION(shmop_open) in PHP_FUNCTION() argument
|
H A D | README | 16 int shmop_open(int key, string flags, int mode, int size)
|
/PHP-7.3/ |
H A D | NEWS | 395 . Fixed bug #79427 (Integer Overflow in shmop_open()). (cmb)
|
Completed in 15 milliseconds