Locking and exception handling fixes for debugger/interpreter.
Change-Id: I20223113355a2d7b5deb4658035be2f788765fc1
diff --git a/src/debugger.h b/src/debugger.h
index d7d2800..c75f643 100644
--- a/src/debugger.h
+++ b/src/debugger.h
@@ -42,7 +42,7 @@
receiver_(NULL), thread_(NULL), class_(NULL), method_(NULL),
arg_count_(0), arg_values_(NULL), options_(0), error(JDWP::ERR_NONE),
result_tag(JDWP::JT_VOID), exception(0),
- lock_("a DebugInvokeReq lock"),
+ lock_("a DebugInvokeReq lock", kBreakpointInvokeLock),
cond_("a DebugInvokeReq condition variable", lock_) {
}