Changeset 16
- Timestamp:
- 07/08/05 21:31:16 (13 years ago)
- Files:
-
- trunk/fastxsl.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/fastxsl.c
r11 r16 270 270 271 271 static php_ss_wrapper * 272 PrmCache_Stylesheet_ParseAndStore(char *filename, size_t filename_len, int mtime )272 PrmCache_Stylesheet_ParseAndStore(char *filename, size_t filename_len, int mtime TSRMLS_DC) 273 273 { 274 274 php_ss_wrapper *wrapper; … … 288 288 289 289 static void 290 PrmCache_Stylesheet_Free(php_ss_wrapper *wrapper )290 PrmCache_Stylesheet_Free(php_ss_wrapper *wrapper TSRMLS_DC) 291 291 { 292 292 if (wrapper->ss) { … … 913 913 int output = 0; 914 914 va_list args; 915 TSRMLS_FETCH(); 916 915 917 va_start(args, msg); 916 918 fraglen = vspprintf(&frag, 0, msg, args); … … 1017 1019 int param_count = nargs - 1; 1018 1020 int i; 1021 TSRMLS_FETCH(); 1019 1022 1020 1023 tctxt = (xsltTransformContextPtr) xsltXPathGetTransformContext(ctxt); … … 1116 1119 PHP_INI_BEGIN() 1117 1120 STD_PHP_INI_ENTRY("fastxsl.shmpath", "/tmp/fastxsl_mem", PHP_INI_SYSTEM, OnUpdateString, shmpath, zend_fastxsl_globals, fastxsl_globals) 1118 STD_PHP_INI_BOOLEAN("fastxsl.nostat", "0", PHP_INI_ALL, OnUpdate Int, nostat, zend_fastxsl_globals, fastxsl_globals)1119 STD_PHP_INI_BOOLEAN("fastxsl.register_functions", "0", PHP_INI_ALL, OnUpdate Int, register_functions, zend_fastxsl_globals, fastxsl_globals)1121 STD_PHP_INI_BOOLEAN("fastxsl.nostat", "0", PHP_INI_ALL, OnUpdateLong, nostat, zend_fastxsl_globals, fastxsl_globals) 1122 STD_PHP_INI_BOOLEAN("fastxsl.register_functions", "0", PHP_INI_ALL, OnUpdateLong, register_functions, zend_fastxsl_globals, fastxsl_globals) 1120 1123 PHP_INI_END() 1121 1124