| Index: runtime/vm/os_thread.cc
|
| diff --git a/runtime/vm/os_thread.cc b/runtime/vm/os_thread.cc
|
| index 6f3487e11b15feeee96f23eb9cb9f890e1d6c7ae..3700c9f0ca1c01a62bf11924d51a7a3b2ed917f3 100644
|
| --- a/runtime/vm/os_thread.cc
|
| +++ b/runtime/vm/os_thread.cc
|
| @@ -103,7 +103,7 @@ void OSThread::EnableThreadInterrupts() {
|
|
|
|
|
| bool OSThread::ThreadInterruptsEnabled() {
|
| - return AtomicOperations::LoadAcquire(&thread_interrupt_disabled_) == 0;
|
| + return AtomicOperations::LoadRelaxed(&thread_interrupt_disabled_) == 0;
|
| }
|
|
|
|
|
|
|