diff options
Diffstat (limited to 'runtime/thread.cc')
| -rw-r--r-- | runtime/thread.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/thread.cc b/runtime/thread.cc index 89465979da..5fc0ce6790 100644 --- a/runtime/thread.cc +++ b/runtime/thread.cc @@ -2439,7 +2439,7 @@ Thread::DumpOrder Thread::DumpStack(std::ostream& os, /*check_suspended=*/ !force_dump_stack, /*dump_locks=*/ !force_dump_stack); Runtime* runtime = Runtime::Current(); - std::optional<uint64_t> start = runtime != nullptr ? runtime->SiqQuitNanoTime() : std::nullopt; + std::optional<uint64_t> start = runtime != nullptr ? runtime->SigQuitNanoTime() : std::nullopt; if (start.has_value()) { os << "DumpLatencyMs: " << static_cast<float>(nanotime - start.value()) / 1000000.0 << "\n"; } |