diff options
| -rw-r--r-- | runtime/jit/jit_code_cache.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/jit/jit_code_cache.cc b/runtime/jit/jit_code_cache.cc index 30703e3eb5..3aaca9acff 100644 --- a/runtime/jit/jit_code_cache.cc +++ b/runtime/jit/jit_code_cache.cc @@ -1978,7 +1978,7 @@ void JitCodeCache::PostForkChildAction(bool is_system_server, bool is_zygote) { /* rwx_memory_allowed= */ !is_system_server, is_zygote, &error_msg)) { - LOG(WARNING) << "Could not create private region after zygote fork: " << error_msg; + LOG(FATAL) << "Could not create private region after zygote fork: " << error_msg; } if (private_region_.HasCodeMapping()) { const MemMap* exec_pages = private_region_.GetExecPages(); |