summaryrefslogtreecommitdiff
path: root/src/thread.h
diff options
context:
space:
mode:
author Elliott Hughes <enh@google.com> 2011-10-28 17:18:29 -0700
committer Elliott Hughes <enh@google.com> 2011-10-28 17:34:47 -0700
commite0918556e7551de638870dcad3f2023f94f85a50 (patch)
treeb866a2b267124354ff2f46815d9870db7e093882 /src/thread.h
parent6a5bd495ff2f614f1495f652c86f3902d3bde537 (diff)
Provide a convenience for logging types that don't have an operator<<.
Change-Id: I650b852ded67576dc5ec7c8e57732cfb49f1ecd6
Diffstat (limited to 'src/thread.h')
-rw-r--r--src/thread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thread.h b/src/thread.h
index 975edfceed..ac97ebecdf 100644
--- a/src/thread.h
+++ b/src/thread.h
@@ -180,7 +180,7 @@ class PACKED Thread {
static Thread* FromManagedThread(JNIEnv* env, jobject thread);
static uint32_t LockOwnerFromThreadLock(Object* thread_lock);
- void Dump(std::ostream& os) const;
+ void Dump(std::ostream& os, bool dump_pending_exception = false) const;
State GetState() const {
return state_;