summaryrefslogtreecommitdiffstats
path: root/uwsgi_fix_php_arginfo.patch
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2022-11-04 09:18:06 +0100
committerRemi Collet <remi@php.net>2022-11-04 09:18:06 +0100
commit842be679f665ec048b8e5337d804c7c5a4fb9669 (patch)
tree14d448f01c1732592d18d7680570813ef8715592 /uwsgi_fix_php_arginfo.patch
parent6e5d7189a9e051f5ead5082ada51c876e99bac74 (diff)
update to 2.0.21
Diffstat (limited to 'uwsgi_fix_php_arginfo.patch')
-rw-r--r--uwsgi_fix_php_arginfo.patch43
1 files changed, 0 insertions, 43 deletions
diff --git a/uwsgi_fix_php_arginfo.patch b/uwsgi_fix_php_arginfo.patch
deleted file mode 100644
index 5228066..0000000
--- a/uwsgi_fix_php_arginfo.patch
+++ /dev/null
@@ -1,43 +0,0 @@
-diff --git a/plugins/php/php_plugin.c b/plugins/php/php_plugin.c
-index 717d6317b..d336adddc 100644
---- a/plugins/php/php_plugin.c
-+++ b/plugins/php/php_plugin.c
-@@ -497,21 +497,24 @@ PHP_FUNCTION(uwsgi_signal) {
- RETURN_NULL();
- }
-
-+ZEND_BEGIN_ARG_INFO_EX(arginfo_void, 0, 0, 0)
-+ZEND_END_ARG_INFO()
-+
- zend_function_entry uwsgi_php_functions[] = {
-- PHP_FE(uwsgi_version, NULL)
-- PHP_FE(uwsgi_setprocname, NULL)
-- PHP_FE(uwsgi_worker_id, NULL)
-- PHP_FE(uwsgi_masterpid, NULL)
-- PHP_FE(uwsgi_signal, NULL)
--
-- PHP_FE(uwsgi_rpc, NULL)
--
-- PHP_FE(uwsgi_cache_get, NULL)
-- PHP_FE(uwsgi_cache_set, NULL)
-- PHP_FE(uwsgi_cache_update, NULL)
-- PHP_FE(uwsgi_cache_del, NULL)
-- PHP_FE(uwsgi_cache_clear, NULL)
-- PHP_FE(uwsgi_cache_exists, NULL)
-+ PHP_FE(uwsgi_version, arginfo_void)
-+ PHP_FE(uwsgi_setprocname, arginfo_void)
-+ PHP_FE(uwsgi_worker_id, arginfo_void)
-+ PHP_FE(uwsgi_masterpid, arginfo_void)
-+ PHP_FE(uwsgi_signal, arginfo_void)
-+
-+ PHP_FE(uwsgi_rpc, arginfo_void)
-+
-+ PHP_FE(uwsgi_cache_get, arginfo_void)
-+ PHP_FE(uwsgi_cache_set, arginfo_void)
-+ PHP_FE(uwsgi_cache_update, arginfo_void)
-+ PHP_FE(uwsgi_cache_del, arginfo_void)
-+ PHP_FE(uwsgi_cache_clear, arginfo_void)
-+ PHP_FE(uwsgi_cache_exists, arginfo_void)
- { NULL, NULL, NULL},
- };
-