aboutsummaryrefslogtreecommitdiff
path: root/operating-system-experiment/Interlocked.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'operating-system-experiment/Interlocked.cpp')
-rw-r--r--operating-system-experiment/Interlocked.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/operating-system-experiment/Interlocked.cpp b/operating-system-experiment/Interlocked.cpp
index 1c0f638..7fc8c6b 100644
--- a/operating-system-experiment/Interlocked.cpp
+++ b/operating-system-experiment/Interlocked.cpp
@@ -6,7 +6,7 @@
#endif
namespace cru {
-void InterlockedAdd(volatile long long *v, long long a) {
+void CruInterlockedAdd(volatile long long *v, long long a) {
#ifdef CRU_WINDOWS
InterlockedAdd64(v, a);
#else