Lines Matching refs:ZCG

91 		if (ZCG(accel_directives).protect_memory) { \
97 if (ZCG(accel_directives).protect_memory) { \
191 if (ZCG(cwd)) { in ZEND_FUNCTION()
192 zend_string_release_ex(ZCG(cwd), 0); in ZEND_FUNCTION()
194 ZCG(cwd) = zend_string_init(cwd, strlen(cwd), 0); in ZEND_FUNCTION()
196 if (ZCG(cwd)) { in ZEND_FUNCTION()
197 zend_string_release_ex(ZCG(cwd), 0); in ZEND_FUNCTION()
198 ZCG(cwd) = NULL; in ZEND_FUNCTION()
201 ZCG(cwd_key_len) = 0; in ZEND_FUNCTION()
202 ZCG(cwd_check) = 1; in ZEND_FUNCTION()
207 if (ZCG(cwd)) { in accel_getcwd()
208 return ZCG(cwd); in accel_getcwd()
215 ZCG(cwd) = zend_string_init(cwd, strlen(cwd), 0); in accel_getcwd()
216 ZCG(cwd_key_len) = 0; in accel_getcwd()
217 ZCG(cwd_check) = 1; in accel_getcwd()
218 return ZCG(cwd); in accel_getcwd()
224 …if ((((double) ZSMMG(wasted_shared_memory)) / ZCG(accel_directives).memory_consumption) >= ZCG(acc… in zend_accel_schedule_restart_if_necessary()
239 ZCG(include_path) = new_value; in ZEND_INI_MH()
240 ZCG(include_path_key_len) = 0; in ZEND_INI_MH()
241 ZCG(include_path_check) = 1; in ZEND_INI_MH()
340 if (ZCG(counted)) { in accel_deactivate_sub()
343 ZCG(counted) = 0; in accel_deactivate_sub()
449 if (!ZCG(counted)) { in accel_find_interned_string()
450 if (!ZCG(accelerator_enabled) || accel_activate_add() == FAILURE) { in accel_find_interned_string()
453 ZCG(counted) = 1; in accel_find_interned_string()
530 if (ZCG(counted)) { in accel_new_interned_string_for_php()
564 if (ZCG(counted)) { in accel_init_interned_string_for_php()
759 ZCG(counted) = 1; in accel_use_shm_interned_strings()
761 ZCG(counted) = 0; in accel_use_shm_interned_strings()
853 if (ZCG(accel_directives).force_restart_timeout in accel_is_inactive()
856 …at %ld (after " ZEND_LONG_FMT " seconds), locked by %d", (long)time(NULL), ZCG(accel_directives).f… in accel_is_inactive()
1098 } else if (ZCG(accel_directives).revalidate_freq && in validate_timestamp_and_record()
1099 persistent_script->dynamic_members.revalidate >= ZCG(request_time)) { in validate_timestamp_and_record()
1104 …persistent_script->dynamic_members.revalidate = ZCG(request_time) + ZCG(accel_directives).revalida… in validate_timestamp_and_record()
1130 ZCG(key_len) = 0; in accel_make_persistent_key()
1136 ZCG(key_len) = 0; in accel_make_persistent_key()
1137 } else if (UNEXPECTED(!ZCG(accel_directives).use_cwd)) { in accel_make_persistent_key()
1139 ZCG(key_len) = 0; in accel_make_persistent_key()
1146 if (EXPECTED(ZCG(cwd_key_len))) { in accel_make_persistent_key()
1147 cwd = ZCG(cwd_key); in accel_make_persistent_key()
1148 cwd_len = ZCG(cwd_key_len); in accel_make_persistent_key()
1159 if (ZCG(cwd_check)) { in accel_make_persistent_key()
1160 ZCG(cwd_check) = 0; in accel_make_persistent_key()
1161 if (ZCG(accelerator_enabled)) { in accel_make_persistent_key()
1181 cwd_len = ZCG(cwd_key_len) = buf + sizeof(buf) - 1 - res; in accel_make_persistent_key()
1182 cwd = ZCG(cwd_key); in accel_make_persistent_key()
1183 memcpy(ZCG(cwd_key), res, cwd_len + 1); in accel_make_persistent_key()
1193 if (EXPECTED(ZCG(include_path_key_len))) { in accel_make_persistent_key()
1194 include_path = ZCG(include_path_key); in accel_make_persistent_key()
1195 include_path_len = ZCG(include_path_key_len); in accel_make_persistent_key()
1196 } else if (!ZCG(include_path) || ZSTR_LEN(ZCG(include_path)) == 0) { in accel_make_persistent_key()
1200 include_path = ZSTR_VAL(ZCG(include_path)); in accel_make_persistent_key()
1201 include_path_len = ZSTR_LEN(ZCG(include_path)); in accel_make_persistent_key()
1203 if (ZCG(include_path_check)) { in accel_make_persistent_key()
1204 ZCG(include_path_check) = 0; in accel_make_persistent_key()
1205 if (ZCG(accelerator_enabled)) { in accel_make_persistent_key()
1207 zend_string *str = accel_find_interned_string(ZCG(include_path)); in accel_make_persistent_key()
1212 str = accel_new_interned_string(zend_string_copy(ZCG(include_path))); in accel_make_persistent_key()
1213 if (str == ZCG(include_path)) { in accel_make_persistent_key()
1224 include_path_len = ZCG(include_path_key_len) = buf + sizeof(buf) - 1 - res; in accel_make_persistent_key()
1225 include_path = ZCG(include_path_key); in accel_make_persistent_key()
1226 memcpy(ZCG(include_path_key), res, include_path_len + 1); in accel_make_persistent_key()
1237 if (UNEXPECTED((size_t)(cwd_len + path_length + include_path_len + 2) >= sizeof(ZCG(key)))) { in accel_make_persistent_key()
1246 memcpy(ZCG(key), path, path_length); in accel_make_persistent_key()
1247 ZCG(key)[path_length] = ':'; in accel_make_persistent_key()
1249 memcpy(ZCG(key) + key_length, cwd, cwd_len); in accel_make_persistent_key()
1253 ZCG(key)[key_length] = ':'; in accel_make_persistent_key()
1255 memcpy(ZCG(key) + key_length, include_path, include_path_len); in accel_make_persistent_key()
1269 if (UNEXPECTED((size_t)(key_length + parent_script_len + 1) >= sizeof(ZCG(key)))) { in accel_make_persistent_key()
1272 ZCG(key)[key_length] = ':'; in accel_make_persistent_key()
1274 memcpy(ZCG(key) + key_length, ZSTR_VAL(parent_script), parent_script_len); in accel_make_persistent_key()
1277 ZCG(key)[key_length] = '\0'; in accel_make_persistent_key()
1278 *key_len = ZCG(key_len) = key_length; in accel_make_persistent_key()
1279 return ZCG(key); in accel_make_persistent_key()
1292 if (!ZCG(accelerator_enabled) || accelerator_shm_read_lock() != SUCCESS) { in zend_accel_invalidate()
1302 if (ZCG(accel_directives).file_cache) { in zend_accel_invalidate()
1313 !ZCG(accel_directives).validate_timestamps || in zend_accel_invalidate()
1381 ZCG(mem) = zend_arena_alloc(&CG(arena), memory_used + 64); in store_script_in_file_cache()
1382 ZCG(mem) = (void*)(((zend_uintptr_t)ZCG(mem) + 63L) & ~63L); in store_script_in_file_cache()
1385 ZCG(mem) = zend_arena_alloc(&CG(arena), memory_used + 8); in store_script_in_file_cache()
1386 ZCG(mem) = (void*)(((zend_uintptr_t)ZCG(mem) + 7L) & ~7L); in store_script_in_file_cache()
1388 ZCG(mem) = zend_arena_alloc(&CG(arena), memory_used); in store_script_in_file_cache()
1401 if ((char*)new_persistent_script->mem + new_persistent_script->size != (char*)ZCG(mem)) { in store_script_in_file_cache()
1403 …((char*)new_persistent_script->mem + new_persistent_script->size < (char*)ZCG(mem)) ? ACCEL_LOG_ER… in store_script_in_file_cache()
1408 (size_t)ZCG(mem)); in store_script_in_file_cache()
1429 …!zend_optimize_script(&new_persistent_script->script, ZCG(accel_directives).optimization_level, ZC… in cache_script_in_file_cache()
1451 if (ZCG(accel_directives).file_cache) { in cache_script_in_shared_memory()
1454 …!zend_optimize_script(&new_persistent_script->script, ZCG(accel_directives).optimization_level, ZC… in cache_script_in_shared_memory()
1472 (!ZCG(accel_directives).validate_timestamps || in cache_script_in_shared_memory()
1486 if (ZCG(accel_directives).file_cache) { in cache_script_in_shared_memory()
1501 ZCG(mem) = zend_shared_alloc(memory_used + 64); in cache_script_in_shared_memory()
1502 if (ZCG(mem)) { in cache_script_in_shared_memory()
1503 ZCG(mem) = (void*)(((zend_uintptr_t)ZCG(mem) + 63L) & ~63L); in cache_script_in_shared_memory()
1505 memset(ZCG(mem), 0, memory_used); in cache_script_in_shared_memory()
1508 char *p = (char*)ZCG(mem); in cache_script_in_shared_memory()
1520 char *p = (char*)ZCG(mem); in cache_script_in_shared_memory()
1535 ZCG(mem) = zend_shared_alloc(memory_used); in cache_script_in_shared_memory()
1536 if (ZCG(mem)) { in cache_script_in_shared_memory()
1537 memset(ZCG(mem), 0, memory_used); in cache_script_in_shared_memory()
1540 if (!ZCG(mem)) { in cache_script_in_shared_memory()
1544 if (ZCG(accel_directives).file_cache) { in cache_script_in_shared_memory()
1561 if ((char*)new_persistent_script->mem + new_persistent_script->size != (char*)ZCG(mem)) { in cache_script_in_shared_memory()
1563 …((char*)new_persistent_script->mem + new_persistent_script->size < (char*)ZCG(mem)) ? ACCEL_LOG_ER… in cache_script_in_shared_memory()
1568 (size_t)ZCG(mem)); in cache_script_in_shared_memory()
1597 if (ZCG(accel_directives).file_cache) { in cache_script_in_shared_memory()
1649 if ((mask & n) && !(ZCG(auto_globals_mask) & n)) { in zend_accel_set_auto_globals()
1650 ZCG(auto_globals_mask) |= n; in zend_accel_set_auto_globals()
1704 if (ZCG(accel_directives).validate_timestamps || in opcache_compile_file()
1705 ZCG(accel_directives).file_update_protection || in opcache_compile_file()
1706 ZCG(accel_directives).max_file_size > 0) { in opcache_compile_file()
1712 …timestamp = zend_get_file_handle_timestamp(file_handle, ZCG(accel_directives).max_file_size > 0 ? … in opcache_compile_file()
1723 if (ZCG(accel_directives).file_update_protection && in opcache_compile_file()
1724 … ((accel_time_t)(ZCG(request_time) - ZCG(accel_directives).file_update_protection) < timestamp)) { in opcache_compile_file()
1729 …if (ZCG(accel_directives).max_file_size > 0 && size > (size_t)ZCG(accel_directives).max_file_size)… in opcache_compile_file()
1754 if (ZCG(accel_directives).file_cache) { in opcache_compile_file()
1800 if (ZCG(accel_directives).validate_timestamps) { in opcache_compile_file()
1805 …new_persistent_script->dynamic_members.revalidate = ZCG(request_time) + ZCG(accel_directives).reva… in opcache_compile_file()
1924 if (!file_handle->filename || !ZCG(accelerator_enabled)) { in persistent_compile_file()
1926 ZCG(cache_opline) = NULL; in persistent_compile_file()
1927 ZCG(cache_persistent_script) = NULL; in persistent_compile_file()
1929 && ZCG(accel_directives).file_cache in persistent_compile_file()
1930 && ZCG(enabled) && accel_startup_ok) { in persistent_compile_file()
1935 ZCG(cache_opline) = NULL; in persistent_compile_file()
1936 ZCG(cache_persistent_script) = NULL; in persistent_compile_file()
1938 } else if (!ZCG(accelerator_enabled) || in persistent_compile_file()
1940 if (ZCG(accel_directives).file_cache) { in persistent_compile_file()
1943 ZCG(cache_opline) = NULL; in persistent_compile_file()
1944 ZCG(cache_persistent_script) = NULL; in persistent_compile_file()
1951 if (ZCG(cache_persistent_script) && in persistent_compile_file()
1954 ZCG(cache_opline) == NULL) || in persistent_compile_file()
1958 ZCG(cache_opline) == EG(current_execute_data)->opline))) { in persistent_compile_file()
1960 persistent_script = ZCG(cache_persistent_script); in persistent_compile_file()
1961 if (ZCG(key_len)) { in persistent_compile_file()
1962 key = ZCG(key); in persistent_compile_file()
1963 key_length = ZCG(key_len); in persistent_compile_file()
1967 if (!ZCG(accel_directives).revalidate_path) { in persistent_compile_file()
1971 ZCG(cache_opline) = NULL; in persistent_compile_file()
1972 ZCG(cache_persistent_script) = NULL; in persistent_compile_file()
1977 ZCG(cache_opline) = NULL; in persistent_compile_file()
1978 ZCG(cache_persistent_script) = NULL; in persistent_compile_file()
2021 ZCG(cache_opline) = NULL; in persistent_compile_file()
2022 ZCG(cache_persistent_script) = NULL; in persistent_compile_file()
2032 if (!ZCG(counted)) { in persistent_compile_file()
2034 if (ZCG(accel_directives).file_cache) { in persistent_compile_file()
2039 ZCG(counted) = 1; in persistent_compile_file()
2044 UNEXPECTED(ZCG(accel_directives).validate_permission) && in persistent_compile_file()
2062 if (persistent_script && ZCG(accel_directives).validate_timestamps) { in persistent_compile_file()
2081 if (persistent_script && ZCG(accel_directives).consistency_checks in persistent_compile_file()
2082 && persistent_script->dynamic_members.hits % ZCG(accel_directives).consistency_checks == 0) { in persistent_compile_file()
2106 if (!persistent_script && ZCG(accel_directives).file_cache) { in persistent_compile_file()
2122 if (ZCG(accel_directives).file_cache) { in persistent_compile_file()
2198 persistent_script->dynamic_members.last_used = ZCG(request_time); in persistent_compile_file()
2224 PHP_MD5Update(&ctx, ZCG(accel_directives).cache_id, strlen(ZCG(accel_directives).cache_id)); in accel_gen_uname_id()
2234 if (ZCG(cache_persistent_script)) { in persistent_stream_open_function()
2238 ZCG(cache_opline) == NULL) || in persistent_stream_open_function()
2242 ZCG(cache_opline) == EG(current_execute_data)->opline)) { in persistent_stream_open_function()
2246 handle->opened_path = zend_string_copy(ZCG(cache_persistent_script)->script.filename); in persistent_stream_open_function()
2249 ZCG(cache_opline) = NULL; in persistent_stream_open_function()
2250 ZCG(cache_persistent_script) = NULL; in persistent_stream_open_function()
2259 ZCG(accelerator_enabled)) { in persistent_zend_resolve_path()
2276 if (!ZCG(accel_directives).revalidate_path) { in persistent_zend_resolve_path()
2284 ZCG(cache_opline) = EG(current_execute_data) ? EG(current_execute_data)->opline : NULL; in persistent_zend_resolve_path()
2285 ZCG(cache_persistent_script) = persistent_script; in persistent_zend_resolve_path()
2290 ZCG(cache_opline) = NULL; in persistent_zend_resolve_path()
2291 ZCG(cache_persistent_script) = NULL; in persistent_zend_resolve_path()
2315 ZCG(key_len) = 0; in persistent_zend_resolve_path()
2317 ZCG(cache_opline) = EG(current_execute_data) ? EG(current_execute_data)->opline : NULL; in persistent_zend_resolve_path()
2318 ZCG(cache_persistent_script) = persistent_script; in persistent_zend_resolve_path()
2324 ZCG(cache_opline) = NULL; in persistent_zend_resolve_path()
2325 ZCG(cache_persistent_script) = NULL; in persistent_zend_resolve_path()
2329 ZCG(cache_opline) = NULL; in persistent_zend_resolve_path()
2330 ZCG(cache_persistent_script) = NULL; in persistent_zend_resolve_path()
2365 if (!ZCG(enabled) || !accel_startup_ok) { in accel_activate()
2366 ZCG(accelerator_enabled) = 0; in accel_activate()
2371 ZCG(auto_globals_mask) = 0; in accel_activate()
2372 ZCG(request_time) = (time_t)sapi_get_request_time(); in accel_activate()
2373 ZCG(cache_opline) = NULL; in accel_activate()
2374 ZCG(cache_persistent_script) = NULL; in accel_activate()
2375 ZCG(include_path_key_len) = 0; in accel_activate()
2376 ZCG(include_path_check) = 1; in accel_activate()
2378 ZCG(cwd) = NULL; in accel_activate()
2379 ZCG(cwd_key_len) = 0; in accel_activate()
2380 ZCG(cwd_check) = 1; in accel_activate()
2383 ZCG(accelerator_enabled) = 0; in accel_activate()
2388 if (ZCG(accel_directives).validate_root) { in accel_activate()
2392 ZCG(root_hash) = 0; in accel_activate()
2394 ZCG(root_hash) = buf.st_ino; in accel_activate()
2395 if (sizeof(buf.st_ino) > sizeof(ZCG(root_hash))) { in accel_activate()
2396 if (ZCG(root_hash) != buf.st_ino) { in accel_activate()
2406 ZCG(root_hash) = 0; in accel_activate()
2413 if (ZCG(counted)) { in accel_activate()
2420 ZCG(counted) = 0; in accel_activate()
2446 if (ZCG(accel_directives).interned_strings_buffer) { in accel_activate()
2455 if (ZCSG(last_restart_time) < ZCG(request_time)) { in accel_activate()
2456 ZCSG(last_restart_time) = ZCG(request_time); in accel_activate()
2466 ZCG(accelerator_enabled) = ZCSG(accelerator_enabled); in accel_activate()
2471 if (ZCG(accelerator_enabled) && ZCSG(last_restart_time) != ZCG(last_restart_time)) { in accel_activate()
2473 ZCG(last_restart_time) = ZCSG(last_restart_time); in accel_activate()
2479 ZCG(pcre_reseted) = 0; in accel_activate()
2480 } else if (!ZCG(accelerator_enabled) && !ZCG(pcre_reseted)) { in accel_activate()
2482 ZCG(pcre_reseted) = 1; in accel_activate()
2494 if (ZCG(cwd)) { in accel_post_deactivate()
2495 zend_string_release_ex(ZCG(cwd), 0); in accel_post_deactivate()
2496 ZCG(cwd) = NULL; in accel_post_deactivate()
2499 if (!ZCG(enabled) || !accel_startup_ok) { in accel_post_deactivate()
2505 ZCG(counted) = 0; in accel_post_deactivate()
2563 if (ZCG(accel_directives).enable_cli && ( in accel_find_sapi()
2579 if (ZCG(accel_directives).interned_strings_buffer) { in zend_accel_init_shm()
2580 …accel_shared_globals = zend_shared_alloc((ZCG(accel_directives).interned_strings_buffer * 1024 * 1… in zend_accel_init_shm()
2594 zend_accel_hash_init(&ZCSG(hash), ZCG(accel_directives).max_accelerated_files); in zend_accel_init_shm()
2596 if (ZCG(accel_directives).interned_strings_buffer) { in zend_accel_init_shm()
2600 hash_size = ZCG(accel_directives).interned_strings_buffer * (32 * 1024); in zend_accel_init_shm()
2618 ZCG(accel_directives).interned_strings_buffer * 1024 * 1024); in zend_accel_init_shm()
2895 if (ZCG(accel_directives).huge_code_pages && in accel_startup()
2907 if (!ZCG(accel_directives).enable_cli && in accel_startup()
2916 if (ZCG(enabled) == 0) { in accel_startup()
2946 file_cache_only = ZCG(accel_directives).file_cache_only; in accel_post_startup()
2948 switch (zend_shared_alloc_startup(ZCG(accel_directives).memory_consumption)) { in accel_post_startup()
2985 ZCG(last_restart_time) = ZCSG(last_restart_time); in accel_post_startup()
2995 } else if (!ZCG(accel_directives).file_cache) { in accel_post_startup()
3029 ZCG(cwd) = NULL; in accel_post_startup()
3030 ZCG(include_path) = NULL; in accel_post_startup()
3034 ZCG(include_path) = ini_entry->value; in accel_post_startup()
3046 if (ZCG(enabled) && accel_startup_ok && in accel_post_startup()
3047 ZCG(accel_directives).user_blacklist_filename && in accel_post_startup()
3048 *ZCG(accel_directives.user_blacklist_filename)) { in accel_post_startup()
3050 zend_accel_blacklist_load(&accel_blacklist, ZCG(accel_directives.user_blacklist_filename)); in accel_post_startup()
3055 if (!file_cache_only && ZCG(accel_directives).interned_strings_buffer) { in accel_post_startup()
3078 if (!ZCG(enabled) || !accel_startup_ok) { in accel_shutdown()
3132 if (ZCG(accel_directives).force_restart_timeout) { in zend_accel_schedule_restart()
3133 ZCSG(force_restart_time) = zend_accel_get_time() + ZCG(accel_directives).force_restart_timeout; in zend_accel_schedule_restart()
3143 #define accel_deactivate_now() ZCG(counted) = 1; accel_deactivate_sub()
3155 if (ZCG(counted)) { in accelerator_shm_read_lock()
3170 ZCG(counted) = 1; in accelerator_shm_read_lock()
3178 if (!ZCG(counted)) { in accelerator_shm_read_unlock()
4107 …if (!zend_optimize_script(&script->script, ZCG(accel_directives).optimization_level, ZCG(accel_dir… in preload_optimize()
4124 …if (!zend_optimize_script(&script->script, ZCG(accel_directives).optimization_level, ZCG(accel_dir… in preload_optimize()
4150 ZCG(mem) = zend_shared_alloc(memory_used + 64); in preload_script_in_shared_memory()
4151 if (ZCG(mem)) { in preload_script_in_shared_memory()
4152 ZCG(mem) = (void*)(((zend_uintptr_t)ZCG(mem) + 63L) & ~63L); in preload_script_in_shared_memory()
4154 memset(ZCG(mem), 0, memory_used); in preload_script_in_shared_memory()
4157 char *p = (char*)ZCG(mem); in preload_script_in_shared_memory()
4169 char *p = (char*)ZCG(mem); in preload_script_in_shared_memory()
4184 ZCG(mem) = zend_shared_alloc(memory_used); in preload_script_in_shared_memory()
4185 if (ZCG(mem)) { in preload_script_in_shared_memory()
4186 memset(ZCG(mem), 0, memory_used); in preload_script_in_shared_memory()
4189 if (!ZCG(mem)) { in preload_script_in_shared_memory()
4202 if ((char*)new_persistent_script->mem + new_persistent_script->size != (char*)ZCG(mem)) { in preload_script_in_shared_memory()
4204 …((char*)new_persistent_script->mem + new_persistent_script->size < (char*)ZCG(mem)) ? ACCEL_LOG_ER… in preload_script_in_shared_memory()
4209 (size_t)ZCG(mem)); in preload_script_in_shared_memory()
4347 ZCG(enabled) = 0; in accel_preload()
4348 ZCG(accelerator_enabled) = 0; in accel_preload()
4400 ZCG(enabled) = 1; in accel_preload()
4685 if (!ZCG(enabled) || !accel_startup_ok) { in accel_finish_startup()
4689 if (ZCG(accel_directives).preload && *ZCG(accel_directives).preload) { in accel_finish_startup()
4732 if (!ZCG(accel_directives).preload_user in accel_finish_startup()
4733 || !*ZCG(accel_directives).preload_user) { in accel_finish_startup()
4739 pw = getpwnam(ZCG(accel_directives).preload_user); in accel_finish_startup()
4742 …zend_accel_error(ACCEL_LOG_FATAL, "Preloading failed to getpwnam(\"%s\")", ZCG(accel_directives).p… in accel_finish_startup()
4786 if (ZCG(accel_directives).preload_user in accel_finish_startup()
4787 && *ZCG(accel_directives).preload_user) { in accel_finish_startup()
4833 ZCG(auto_globals_mask) = 0; in accel_finish_startup()
4834 ZCG(request_time) = (time_t)sapi_get_request_time(); in accel_finish_startup()
4835 ZCG(cache_opline) = NULL; in accel_finish_startup()
4836 ZCG(cache_persistent_script) = NULL; in accel_finish_startup()
4837 ZCG(include_path_key_len) = 0; in accel_finish_startup()
4838 ZCG(include_path_check) = 1; in accel_finish_startup()
4840 ZCG(cwd) = NULL; in accel_finish_startup()
4841 ZCG(cwd_key_len) = 0; in accel_finish_startup()
4842 ZCG(cwd_check) = 1; in accel_finish_startup()
4844 if (accel_preload(ZCG(accel_directives).preload) != SUCCESS) { in accel_finish_startup()