Changeset 1231 in svn
- Timestamp:
- 2013-01-14T14:26:03Z (6 years ago)
- Location:
- branches/3.0
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.0
-
branches/3.0/ChangeLog
r1223 r1231 1 3.0.2 2013-??-?? 2 ChangeLog 3 ======== 4 * fixes #297: segv on startup under sparc, ini setting overflow 5 1 6 3.0.1 2013-01-11 2 7 ChangeLog -
branches/3.0/NEWS
r1223 r1231 1 3.0.2 2013-??-?? 2 ======== 3 * bug fixes 4 1 5 3.0.1 2013-01-11 2 6 ======== -
branches/3.0/xcache.c
r1201 r1231 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)
Note: See TracChangeset
for help on using the changeset viewer.