Changeset 1230 for trunk/xcache.c
- Timestamp:
- 01/14/2013 03:22:36 PM (4 months ago)
- Files:
-
- 1 modified
-
trunk/xcache.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/xcache.c
r1201 r1230 37 37 /* {{{ globals */ 38 38 static char *xc_coredump_dir = NULL; 39 static zend_bool xc_coredump_type = 0; 39 #ifdef ZEND_WIN32 40 static zend_ulong xc_coredump_type = 0; 41 #endif 40 42 static zend_bool xc_disable_on_crash = 0; 41 43 … … 721 723 PHP_INI_BEGIN() 722 724 PHP_INI_ENTRY1 ("xcache.coredump_directory", "", PHP_INI_SYSTEM, xcache_OnUpdateString, &xc_coredump_dir) 725 #ifdef ZEND_WIN32 723 726 PHP_INI_ENTRY1 ("xcache.coredump_type", "0", PHP_INI_SYSTEM, xcache_OnUpdateULong, &xc_coredump_type) 727 #endif 724 728 PHP_INI_ENTRY1_EX ("xcache.disable_on_crash", "0", PHP_INI_SYSTEM, xcache_OnUpdateBool, &xc_disable_on_crash, zend_ini_boolean_displayer_cb) 725 729 PHP_INI_ENTRY1_EX ("xcache.test", "0", PHP_INI_SYSTEM, xcache_OnUpdateBool, &xc_test, zend_ini_boolean_displayer_cb)

