Chromium Code Reviews| Index: runtime/vm/isolate.h |
| diff --git a/runtime/vm/isolate.h b/runtime/vm/isolate.h |
| index a7aa4fcd78966f34eb4de1aa4f32b5a10398d689..2750556b9f978fd0adea7ce50fd309e9e0633106 100644 |
| --- a/runtime/vm/isolate.h |
| +++ b/runtime/vm/isolate.h |
| @@ -327,12 +327,12 @@ class Isolate : public BaseIsolate { |
| enum { |
| 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. |
| + kVMInterrupt = 0x4, // Internal VM checks: safepoints, store buffers, etc. |
|
Ivan Posva
2015/07/31 23:40:16
Since we gave up on aligning comments, then please
|
| kInterruptsMask = |
| kApiInterrupt | |
| kMessageInterrupt | |
| - kStoreBufferInterrupt, |
| + kVMInterrupt, |
| }; |
| void ScheduleInterrupts(uword interrupt_bits); |