| Index: runtime/vm/isolate.h
|
| diff --git a/runtime/vm/isolate.h b/runtime/vm/isolate.h
|
| index a7aa4fcd78966f34eb4de1aa4f32b5a10398d689..7863b9585a71e13926be8d75b3fca04330f192a8 100644
|
| --- a/runtime/vm/isolate.h
|
| +++ b/runtime/vm/isolate.h
|
| @@ -328,11 +328,13 @@ class Isolate : public BaseIsolate {
|
| 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.
|
| + kSafepointInterrrupt = 0x8, // An interrupt to bring threads to safepoint.
|
|
|
| kInterruptsMask =
|
| kApiInterrupt |
|
| kMessageInterrupt |
|
| - kStoreBufferInterrupt,
|
| + kStoreBufferInterrupt |
|
| + kSafepointInterrrupt,
|
| };
|
|
|
| void ScheduleInterrupts(uword interrupt_bits);
|
|
|