diff options
Diffstat (limited to 'runtime/debugger.h')
-rw-r--r-- | runtime/debugger.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/debugger.h b/runtime/debugger.h index 48e457fc6f..488ba7f728 100644 --- a/runtime/debugger.h +++ b/runtime/debugger.h @@ -189,6 +189,7 @@ class DeoptimizationRequest { // Method for selective deoptimization. jmethodID method_; }; +std::ostream& operator<<(std::ostream& os, const DeoptimizationRequest::Kind& rhs); class Dbg { public: @@ -493,7 +494,7 @@ class Dbg { /* * Debugger notification */ - enum { + enum EventFlag { kBreakpoint = 0x01, kSingleStep = 0x02, kMethodEntry = 0x04, |