mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
dll export APIs needed by phpdbg
This commit is contained in:
parent
79a4339f1b
commit
fdbfcc0b51
3 changed files with 6 additions and 5 deletions
|
@ -5051,7 +5051,7 @@ static int user_tick_function_compare(user_tick_function_entry * tick_fe1, user_
|
||||||
}
|
}
|
||||||
/* }}} */
|
/* }}} */
|
||||||
|
|
||||||
void php_call_shutdown_functions(TSRMLS_D) /* {{{ */
|
PHPAPI void php_call_shutdown_functions(TSRMLS_D) /* {{{ */
|
||||||
{
|
{
|
||||||
if (BG(user_shutdown_function_names)) {
|
if (BG(user_shutdown_function_names)) {
|
||||||
zend_try {
|
zend_try {
|
||||||
|
@ -5063,7 +5063,7 @@ void php_call_shutdown_functions(TSRMLS_D) /* {{{ */
|
||||||
}
|
}
|
||||||
/* }}} */
|
/* }}} */
|
||||||
|
|
||||||
void php_free_shutdown_functions(TSRMLS_D) /* {{{ */
|
PHPAPI void php_free_shutdown_functions(TSRMLS_D) /* {{{ */
|
||||||
{
|
{
|
||||||
if (BG(user_shutdown_function_names))
|
if (BG(user_shutdown_function_names))
|
||||||
zend_try {
|
zend_try {
|
||||||
|
|
|
@ -261,4 +261,8 @@ PHPAPI extern zend_bool register_user_shutdown_function(char *function_name, siz
|
||||||
PHPAPI extern zend_bool remove_user_shutdown_function(char *function_name, size_t function_len TSRMLS_DC);
|
PHPAPI extern zend_bool remove_user_shutdown_function(char *function_name, size_t function_len TSRMLS_DC);
|
||||||
PHPAPI extern zend_bool append_user_shutdown_function(php_shutdown_function_entry shutdown_function_entry TSRMLS_DC);
|
PHPAPI extern zend_bool append_user_shutdown_function(php_shutdown_function_entry shutdown_function_entry TSRMLS_DC);
|
||||||
|
|
||||||
|
PHPAPI void php_call_shutdown_functions(TSRMLS_D);
|
||||||
|
PHPAPI void php_free_shutdown_functions(TSRMLS_D);
|
||||||
|
|
||||||
|
|
||||||
#endif /* BASIC_FUNCTIONS_H */
|
#endif /* BASIC_FUNCTIONS_H */
|
||||||
|
|
|
@ -50,9 +50,6 @@ PHPAPI int php_handle_auth_data(const char *auth TSRMLS_DC);
|
||||||
PHPAPI void php_html_puts(const char *str, uint siz TSRMLS_DC);
|
PHPAPI void php_html_puts(const char *str, uint siz TSRMLS_DC);
|
||||||
PHPAPI int php_stream_open_for_zend_ex(const char *filename, zend_file_handle *handle, int mode TSRMLS_DC);
|
PHPAPI int php_stream_open_for_zend_ex(const char *filename, zend_file_handle *handle, int mode TSRMLS_DC);
|
||||||
|
|
||||||
extern void php_call_shutdown_functions(TSRMLS_D);
|
|
||||||
extern void php_free_shutdown_functions(TSRMLS_D);
|
|
||||||
|
|
||||||
/* environment module */
|
/* environment module */
|
||||||
extern int php_init_environ(void);
|
extern int php_init_environ(void);
|
||||||
extern int php_shutdown_environ(void);
|
extern int php_shutdown_environ(void);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue