Searched refs:shmop (Results 1 – 19 of 19) sorted by relevance
/PHP-8.0/ext/shmop/ |
H A D | shmop.c | 47 PHP_MINIT(shmop), 51 PHP_MINFO(shmop), 143 php_shmop *shmop; in PHP_FUNCTION() local 159 shmop->key = key; in PHP_FUNCTION() 186 if (shmop->shmflg & IPC_CREAT && shmop->size < 1) { in PHP_FUNCTION() 191 shmop->shmid = shmget(shmop->key, shmop->size, shmop->shmflg); in PHP_FUNCTION() 208 shmop->addr = shmat(shmop->shmid, 0, shmop->shmatflg); in PHP_FUNCTION() 228 php_shmop *shmop; in PHP_FUNCTION() local 273 php_shmop *shmop; in PHP_FUNCTION() local 288 php_shmop *shmop; in PHP_FUNCTION() local [all …]
|
H A D | config.m4 | 1 PHP_ARG_ENABLE([shmop], 2 [whether to enable shmop support], 3 [AS_HELP_STRING([--enable-shmop], 4 [Enable shmop support])]) 8 PHP_NEW_EXTENSION(shmop, shmop.c, $ext_shared)
|
H A D | shmop.stub.php | 9 function shmop_read(Shmop $shmop, int $offset, int $size): string {} argument 12 function shmop_close(Shmop $shmop): void {} argument 14 function shmop_size(Shmop $shmop): int {} argument 16 function shmop_write(Shmop $shmop, string $data, int $offset): int {} argument 18 function shmop_delete(Shmop $shmop): bool {} argument
|
H A D | config.w32 | 3 ARG_ENABLE("shmop", "shmop support", "no"); 6 EXTENSION("shmop", "shmop.c");
|
H A D | shmop_arginfo.h | 12 ZEND_ARG_OBJ_INFO(0, shmop, Shmop, 0) 18 ZEND_ARG_OBJ_INFO(0, shmop, Shmop, 0) 22 ZEND_ARG_OBJ_INFO(0, shmop, Shmop, 0) 26 ZEND_ARG_OBJ_INFO(0, shmop, Shmop, 0) 32 ZEND_ARG_OBJ_INFO(0, shmop, Shmop, 0)
|
H A D | php_shmop.h | 28 PHP_MINIT_FUNCTION(shmop); 29 PHP_MINFO_FUNCTION(shmop);
|
/PHP-8.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"; 81 data in memory is: test #1 of the shmop() extension 83 data in memory is: test #1 of the shmop() extension 87 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 | bug81407.phpt | 6 if (!extension_loaded("shmop")) die("skip shmop extension not available");
|
H A D | 002.phpt | 2 shmop extension error messages 7 if (!extension_loaded("shmop")) { 8 die("skip shmop() extension not available");
|
/PHP-8.0/travis/ |
H A D | compile.sh | 51 --enable-shmop \
|
/PHP-8.0/.github/actions/configure-x32/ |
H A D | action.yml | 44 --enable-shmop \
|
/PHP-8.0/.github/actions/configure-x64/ |
H A D | action.yml | 40 --enable-shmop \
|
/PHP-8.0/.github/actions/configure-macos/ |
H A D | action.yml | 45 --enable-shmop \
|
/PHP-8.0/ |
H A D | EXTENSIONS | 446 EXTENSION: shmop
|
H A D | NEWS | 706 . Fixed bug #81283 (shmop can't read beyond 2147483647 bytes). (cmb, Nikita) 1511 . Converted shmop resources to objects. (cmb)
|
H A D | php.ini-development | 945 ;extension=shmop
|
H A D | php.ini-production | 947 ;extension=shmop
|
/PHP-8.0/.github/workflows/ |
H A D | nightly.yml | 504 --enable-shmop \
|
Completed in 30 milliseconds