Skip to content
Snippets Groups Projects
Commit 86906595 authored by Florian Schmaus's avatar Florian Schmaus
Browse files

Use thread fence in Actor.getSum()

parent ce059fbd
No related branches found
No related tags found
No related merge requests found
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
#include "Debug.hpp" #include "Debug.hpp"
#include "emper.hpp" #include "emper.hpp"
#include <atomic>
#include <mutex> #include <mutex>
class SumActor : public Actor<uint64_t> { class SumActor : public Actor<uint64_t> {
...@@ -23,6 +24,7 @@ public: ...@@ -23,6 +24,7 @@ public:
} }
uint64_t getSum() { uint64_t getSum() {
std::atomic_thread_fence(std::memory_order::memory_order_acquire);
return sum; return sum;
} }
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment