Commit 9d5c1579 authored by Harris Hancock's avatar Harris Hancock

Use std::atomic sentWake in async-win32.{h,c++}

We could also port this by using the deprecated MSVC compiler intrinsics,
but:

1) They're deprecated,
2) I've never used them,
3) We'd need to sprinkle some #if's in the code to support both MinGW and
MSVC, increasing the maintenance burden.
parent 3a02012a
...@@ -27,6 +27,7 @@ ...@@ -27,6 +27,7 @@
#include "async-win32.h" #include "async-win32.h"
#include "debug.h" #include "debug.h"
#include <atomic>
#include <chrono> #include <chrono>
#include "refcount.h" #include "refcount.h"
...@@ -176,8 +177,8 @@ bool Win32IocpEventPort::poll() { ...@@ -176,8 +177,8 @@ bool Win32IocpEventPort::poll() {
} }
void Win32IocpEventPort::wake() const { void Win32IocpEventPort::wake() const {
if (!__atomic_load_n(&sentWake, __ATOMIC_ACQUIRE)) { if (!sentWake.load(std::memory_order_acquire)) {
__atomic_store_n(&sentWake, true, __ATOMIC_RELEASE); sentWake.store(true, std::memory_order_release);
KJ_WIN32(PostQueuedCompletionStatus(iocp, 0, 0, nullptr)); KJ_WIN32(PostQueuedCompletionStatus(iocp, 0, 0, nullptr));
} }
} }
...@@ -212,8 +213,8 @@ void Win32IocpEventPort::waitIocp(DWORD timeoutMs) { ...@@ -212,8 +213,8 @@ void Win32IocpEventPort::waitIocp(DWORD timeoutMs) {
} }
bool Win32IocpEventPort::receivedWake() { bool Win32IocpEventPort::receivedWake() {
if (__atomic_load_n(&sentWake, __ATOMIC_ACQUIRE)) { if (sentWake.load(std::memory_order_acquire)) {
__atomic_store_n(&sentWake, false, __ATOMIC_RELEASE); sentWake.store(false, std::memory_order_release);
return true; return true;
} else { } else {
return false; return false;
......
...@@ -29,6 +29,7 @@ ...@@ -29,6 +29,7 @@
#include "async.h" #include "async.h"
#include "time.h" #include "time.h"
#include "io.h" #include "io.h"
#include <atomic>
#include <inttypes.h> #include <inttypes.h>
// Include windows.h as lean as possible. (If you need more of the Windows API for your app, // Include windows.h as lean as possible. (If you need more of the Windows API for your app,
...@@ -200,7 +201,7 @@ private: ...@@ -200,7 +201,7 @@ private:
AutoCloseHandle thread; AutoCloseHandle thread;
Win32WaitObjectThreadPool waitThreads; Win32WaitObjectThreadPool waitThreads;
TimerImpl timerImpl; TimerImpl timerImpl;
mutable bool sentWake = false; mutable std::atomic<bool> sentWake {false};
static TimePoint readClock(); static TimePoint readClock();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment