aboutsummaryrefslogtreecommitdiff
path: root/operating-system-experiment/Interlocked.hpp
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2021-06-10 11:43:47 +0800
committercrupest <crupest@outlook.com>2021-06-10 11:43:47 +0800
commit44668df2d970e0286f34b7de9f7125ba7abf7189 (patch)
tree23601ad724afde9bc26deb390425eba93daa06f5 /operating-system-experiment/Interlocked.hpp
parentbc59f70946f58a9df301d5c61d2bc0dbafaa74f5 (diff)
parent500ee4751c4861c4217c067f5d0dcae0cbd55d7c (diff)
downloadlife-44668df2d970e0286f34b7de9f7125ba7abf7189.tar.gz
life-44668df2d970e0286f34b7de9f7125ba7abf7189.tar.bz2
life-44668df2d970e0286f34b7de9f7125ba7abf7189.zip
Merge branch 'main' of https://github.com/crupest/life
Diffstat (limited to 'operating-system-experiment/Interlocked.hpp')
-rw-r--r--operating-system-experiment/Interlocked.hpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/operating-system-experiment/Interlocked.hpp b/operating-system-experiment/Interlocked.hpp
new file mode 100644
index 0000000..1151e39
--- /dev/null
+++ b/operating-system-experiment/Interlocked.hpp
@@ -0,0 +1,10 @@
+#ifndef HRADER_INTERLOCKED_H
+#define HRADER_INTERLOCKED_H
+
+#include "Base.h"
+
+namespace cru {
+CRU_API void InterlockedIncrease(volatile long long *v);
+}
+
+#endif