diff options
Diffstat (limited to 'runtime/runtime_linux.cc')
-rw-r--r-- | runtime/runtime_linux.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/runtime_linux.cc b/runtime/runtime_linux.cc index 6313553255..cfa8ea6342 100644 --- a/runtime/runtime_linux.cc +++ b/runtime/runtime_linux.cc @@ -31,8 +31,8 @@ void HandleUnexpectedSignalLinux(int signal_number, siginfo_t* info, void* raw_c HandleUnexpectedSignalCommon(signal_number, info, raw_context, - /* handle_timeout_signal */ true, - /* dump_on_stderr */ true); + /* handle_timeout_signal= */ true, + /* dump_on_stderr= */ true); if (getenv("debug_db_uid") != nullptr || getenv("art_wait_for_gdb_on_crash") != nullptr) { pid_t tid = GetTid(); @@ -77,7 +77,7 @@ void Runtime::InitPlatformSignalHandlers() { // On the host, we don't have debuggerd to dump a stack for us when something unexpected happens. InitPlatformSignalHandlersCommon(HandleUnexpectedSignalLinux, nullptr, - /* handle_timeout_signal */ true); + /* handle_timeout_signal= */ true); } } // namespace art |