summaryrefslogtreecommitdiff
path: root/runtime/utils.h
diff options
context:
space:
mode:
author Andreas Gampe <agampe@google.com> 2015-01-08 17:38:02 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2015-01-08 17:38:02 +0000
commit553727e466942a10e11ee39dcb67e3f9562b471e (patch)
tree3071b04254e7e61d4060a6db473a14529f848da4 /runtime/utils.h
parent97d091d0a1667592e15bac44e21dc94f9fc032fc (diff)
parent628a61ac52a8a314e74ab445397add60b4e72a5b (diff)
Merge "ART: Pass ucontext to Backtrace in Stack Dump"
Diffstat (limited to 'runtime/utils.h')
-rw-r--r--runtime/utils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/utils.h b/runtime/utils.h
index f9622b7110..b5413e75b6 100644
--- a/runtime/utils.h
+++ b/runtime/utils.h
@@ -465,7 +465,7 @@ void SetThreadName(const char* thread_name);
// Dumps the native stack for thread 'tid' to 'os'.
void DumpNativeStack(std::ostream& os, pid_t tid, const char* prefix = "",
- mirror::ArtMethod* current_method = nullptr)
+ mirror::ArtMethod* current_method = nullptr, void* ucontext = nullptr)
NO_THREAD_SAFETY_ANALYSIS;
// Dumps the kernel stack for thread 'tid' to 'os'. Note that this is only available on linux-x86.