Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Unified Diff: include/ports/SkAtomics_atomic.h

Issue 896553002: Atomics overhaul. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: warning Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « include/core/SkThreadPriv.h ('k') | include/ports/SkAtomics_std.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/ports/SkAtomics_atomic.h
diff --git a/include/ports/SkAtomics_atomic.h b/include/ports/SkAtomics_atomic.h
new file mode 100644
index 0000000000000000000000000000000000000000..3ae328a153fca91049fcdf18d11ff76d6c93f998
--- /dev/null
+++ b/include/ports/SkAtomics_atomic.h
@@ -0,0 +1,26 @@
+#ifndef SkAtomics_atomic_DEFINED
+#define SkAtomics_atomic_DEFINED
+
+template <typename T>
+T sk_atomic_load(const T* ptr, sk_memory_order mo) {
+ return __atomic_load_n(ptr, mo);
+}
+
+template <typename T>
+void sk_atomic_store(T* ptr, T val, sk_memory_order mo) {
+ __atomic_store_n(ptr, val, mo);
+}
+
+template <typename T>
+T sk_atomic_fetch_add(T* ptr, T val, sk_memory_order mo) {
+ return __atomic_fetch_add(ptr, val, mo);
+}
+
+template <typename T>
+bool sk_atomic_compare_exchange(T* ptr, T* expected, T desired,
+ sk_memory_order success,
+ sk_memory_order failure) {
+ return __atomic_compare_exchange_n(ptr, expected, desired, false/*weak?*/, success, failure);
+}
+
+#endif//SkAtomics_atomic_DEFINED
« no previous file with comments | « include/core/SkThreadPriv.h ('k') | include/ports/SkAtomics_std.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698