diff options
author | Kalle Sommer Nielsen <kalle@php.net> | 2013-12-18 09:32:26 +0100 |
---|---|---|
committer | Kalle Sommer Nielsen <kalle@php.net> | 2013-12-18 09:32:26 +0100 |
commit | aed4b086acaa50318b3e91146a35a9af6f46e11d (patch) | |
tree | 90bbc596c33ee84e06d53786ec0338a91df506f6 /main/php_ticks.h | |
parent | c83598119be083b572e92af292e9e9faa98d8d85 (diff) | |
download | php-git-aed4b086acaa50318b3e91146a35a9af6f46e11d.tar.gz |
Eliminate the TSRMLS_FETCH() calls in the ticks functions and hook
Diffstat (limited to 'main/php_ticks.h')
-rw-r--r-- | main/php_ticks.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/main/php_ticks.h b/main/php_ticks.h index cc966fa520..9f50af00f5 100644 --- a/main/php_ticks.h +++ b/main/php_ticks.h @@ -24,11 +24,11 @@ int php_startup_ticks(TSRMLS_D); void php_deactivate_ticks(TSRMLS_D); void php_shutdown_ticks(TSRMLS_D); -void php_run_ticks(int count); +void php_run_ticks(int count TSRMLS_DC); BEGIN_EXTERN_C() -PHPAPI void php_add_tick_function(void (*func)(int)); -PHPAPI void php_remove_tick_function(void (*func)(int)); +PHPAPI void php_add_tick_function(void (*func)(int) TSRMLS_DC); +PHPAPI void php_remove_tick_function(void (*func)(int) TSRMLS_DC); END_EXTERN_C() #endif |