| Index: runtime/vm/isolate.h
|
| ===================================================================
|
| --- runtime/vm/isolate.h (revision 44339)
|
| +++ runtime/vm/isolate.h (working copy)
|
| @@ -304,13 +304,11 @@
|
| kApiInterrupt = 0x1, // An interrupt from Dart_InterruptIsolate.
|
| kMessageInterrupt = 0x2, // An interrupt to process an out of band message.
|
| kStoreBufferInterrupt = 0x4, // An interrupt to process the store buffer.
|
| - kVmStatusInterrupt = 0x8, // An interrupt to process a status request.
|
|
|
| kInterruptsMask =
|
| kApiInterrupt |
|
| kMessageInterrupt |
|
| - kStoreBufferInterrupt |
|
| - kVmStatusInterrupt,
|
| + kStoreBufferInterrupt,
|
| };
|
|
|
| void ScheduleInterrupts(uword interrupt_bits);
|
| @@ -457,13 +455,6 @@
|
| return interrupt_callback_;
|
| }
|
|
|
| - static void SetVmStatsCallback(Dart_IsolateInterruptCallback cb) {
|
| - vmstats_callback_ = cb;
|
| - }
|
| - static Dart_IsolateInterruptCallback VmStatsCallback() {
|
| - return vmstats_callback_;
|
| - }
|
| -
|
| static void SetUnhandledExceptionCallback(
|
| Dart_IsolateUnhandledExceptionCallback cb) {
|
| unhandled_exception_callback_ = cb;
|
|
|