diff options
author | crupest <crupest@outlook.com> | 2021-06-10 11:48:45 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-06-10 11:48:45 +0800 |
commit | ac67d8556835e2c37fd9e96199432750dbb40ba9 (patch) | |
tree | 3051b865ebe6956fb1d9dbc632da92143fa8d240 | |
parent | e44189399bb77c150ab7c856e60249d0f6771b2c (diff) | |
download | life-ac67d8556835e2c37fd9e96199432750dbb40ba9.tar.gz life-ac67d8556835e2c37fd9e96199432750dbb40ba9.tar.bz2 life-ac67d8556835e2c37fd9e96199432750dbb40ba9.zip |
...
-rw-r--r-- | operating-system-experiment/Interlocked.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/operating-system-experiment/Interlocked.hpp b/operating-system-experiment/Interlocked.hpp index 1151e39..aa5dbfc 100644 --- a/operating-system-experiment/Interlocked.hpp +++ b/operating-system-experiment/Interlocked.hpp @@ -4,7 +4,7 @@ #include "Base.h"
namespace cru {
-CRU_API void InterlockedIncrease(volatile long long *v);
+CRU_API void InterlockedAdd(volatile long long *v, long long a);
}
#endif
|