/opt/alt/php83/usr/include/php/ext/swoole/ext-src
NameSizeModeActions
php_swoole_call_stack.h18580644editdlrm
php_swoole_client.h26050644editdlrm
php_swoole_coroutine.h101770644editdlrm
php_swoole_coroutine_system.h19200644editdlrm
php_swoole_curl.h52010644editdlrm
php_swoole_cxx.h266320644editdlrm
php_swoole_http.h150800644editdlrm
php_swoole_http_server.h38680644editdlrm
php_swoole_library.h3896760644editdlrm
php_swoole_odbc.h58960644editdlrm
php_swoole_oracle.h34990644editdlrm
php_swoole_pgsql.h27520644editdlrm
php_swoole_private.h469740644editdlrm
php_swoole_process.h14140644editdlrm
php_swoole_server.h67560644editdlrm
php_swoole_sqlite.h27370644editdlrm
php_swoole_thread.h109720644editdlrm
swoole_curl_interface.h14720644editdlrm
Edit: /opt/alt/php83/usr/include/php/ext/swoole/ext-src/php_swoole_call_stack.h (1858B)
/* +----------------------------------------------------------------------+ | Swoole | +----------------------------------------------------------------------+ | This source file is subject to version 2.0 of the Apache license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | http://www.apache.org/licenses/LICENSE-2.0.html | | If you did not receive a copy of the Apache2.0 license and are unable| | to obtain it through the world-wide-web, please send a note to | | license@swoole.com so we can mail you a copy immediately. | +----------------------------------------------------------------------+ | Author: Yurun | +----------------------------------------------------------------------+ */ #include "php_swoole.h" #ifdef ZEND_CHECK_STACK_LIMIT #define HOOK_PHP_CALL_STACK(callback) \ void *__stack_limit = EG(stack_limit); \ void *__stack_base = EG(stack_base); \ EG(stack_base) = (void *) 0; \ EG(stack_limit) = (void *) 0; \ callback EG(stack_limit) = __stack_limit; \ EG(stack_base) = __stack_base; #else #define HOOK_PHP_CALL_STACK(callback) callback #endif