Searched refs:shmop (Results 1 – 9 of 9) sorted by relevance
/PHP-7.0/ext/shmop/ |
H A D | shmop.c | 100 PHP_MINIT(shmop), 104 PHP_MINFO(shmop), 111 ZEND_GET_MODULE(shmop) in ZEND_GET_MODULE() argument 120 shmdt(shmop->addr); in ZEND_GET_MODULE() 121 efree(shmop); in ZEND_GET_MODULE() 167 shmop->key = key; in PHP_FUNCTION() 177 shmop->size = size; in PHP_FUNCTION() 194 if (shmop->shmflg & IPC_CREAT && shmop->size < 1) { in PHP_FUNCTION() 199 shmop->shmid = shmget(shmop->key, shmop->size, shmop->shmflg); in PHP_FUNCTION() 211 shmop->addr = shmat(shmop->shmid, 0, shmop->shmatflg); in PHP_FUNCTION() [all …]
|
H A D | config.m4 | 2 PHP_ARG_ENABLE(shmop, whether to enable shmop support, 3 [ --enable-shmop Enable shmop support]) 7 PHP_NEW_EXTENSION(shmop, shmop.c, $ext_shared)
|
H A D | config.w32 | 4 ARG_ENABLE("shmop", "shmop support", "no"); 7 EXTENSION("shmop", "shmop.c");
|
H A D | php_shmop.h | 30 PHP_MINIT_FUNCTION(shmop); 31 PHP_MINFO_FUNCTION(shmop);
|
/PHP-7.0/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"; 84 data in memory is: test #1 of the shmop() extension 86 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 | 002.phpt | 2 shmop extension error messages 10 if (!extension_loaded("shmop")) { 11 die("skip shmop() extension not available");
|
/PHP-7.0/travis/ |
H A D | compile.sh | 43 --enable-shmop \
|
/PHP-7.0/ |
H A D | EXTENSIONS | 404 EXTENSION: shmop
|
H A D | UPGRADING | 751 The shmop identifiers have been changed from ints to resources of type shmop.
|
Completed in 17 milliseconds