diff options
author | 2018-10-19 14:06:15 -0700 | |
---|---|---|
committer | 2018-10-23 15:19:55 -0700 | |
commit | 98ea9d9d82ab078ca10fa7f8e02eddda94cf1d98 (patch) | |
tree | a848b7e41ff227a2d3d4d6795ec11089f39cb6ca /runtime/runtime_linux.cc | |
parent | 02338775e33b553be51d44ff60bb1ef8e527bd94 (diff) |
ART: Refactor for bugprone-argument-comment
Handles runtime.
Bug: 116054210
Test: WITH_TIDY=1 mmma art
Change-Id: Ibc0d5086809d647f0ce4df5452eb84442d27ecf0
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 |