Searched refs:shmop (Results 1 – 12 of 12) sorted by relevance
/PHP-7.3/ext/shmop/ |
H A D | shmop.c | 99 PHP_MINIT(shmop), 103 PHP_MINFO(shmop), 110 ZEND_GET_MODULE(shmop) in ZEND_GET_MODULE() argument 119 shmdt(shmop->addr); in ZEND_GET_MODULE() 120 efree(shmop); in ZEND_GET_MODULE() 166 shmop->key = key; in PHP_FUNCTION() 176 shmop->size = size; in PHP_FUNCTION() 193 if (shmop->shmflg & IPC_CREAT && shmop->size < 1) { in PHP_FUNCTION() 198 shmop->shmid = shmget(shmop->key, shmop->size, shmop->shmflg); in PHP_FUNCTION() 215 shmop->addr = shmat(shmop->shmid, 0, shmop->shmatflg); in PHP_FUNCTION() [all …]
|
H A D | config.m4 | 1 dnl config.m4 for extension shmop 3 PHP_ARG_ENABLE(shmop, whether to enable shmop support, 4 [ --enable-shmop Enable shmop support]) 8 PHP_NEW_EXTENSION(shmop, shmop.c, $ext_shared)
|
H A D | config.w32 | 3 ARG_ENABLE("shmop", "shmop support", "no"); 6 EXTENSION("shmop", "shmop.c");
|
H A D | php_shmop.h | 30 PHP_MINIT_FUNCTION(shmop); 31 PHP_MINFO_FUNCTION(shmop);
|
/PHP-7.3/ext/shmop/tests/ |
H A D | 001.phpt | 2 shmop extension test 5 if (!extension_loaded("shmop")) { 6 die("skip shmop() extension not available"); 12 $write_d1 = "test #1 of the shmop() extension"; 83 data in memory is: test #1 of the shmop() extension 85 data in memory is: test #1 of the shmop() extension 90 data in memory is: test #1 of the shmop() extensiontest #2 append data to shared memory segment
|
H A D | shmop_open_private.phpt | 5 if (!extension_loaded('shmop')) die('skip shmop extension not available');
|
H A D | 002.phpt | 2 shmop extension error messages 10 if (!extension_loaded("shmop")) { 11 die("skip shmop() extension not available");
|
/PHP-7.3/travis/ |
H A D | compile.sh | 60 --enable-shmop \
|
/PHP-7.3/ |
H A D | EXTENSIONS | 446 EXTENSION: shmop
|
H A D | php.ini-development | 929 ;extension=shmop
|
H A D | php.ini-production | 931 ;extension=shmop
|
H A D | NEWS | 586 . Fixed bug #78538 (shmop memory leak). (cmb)
|
Completed in 25 milliseconds