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

Unified Diff: src/ports/SkAtomics_android.h

Issue 305593002: Use SkAtomics_sync on Android (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 7 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/SkPostConfig.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ports/SkAtomics_android.h
diff --git a/src/ports/SkAtomics_android.h b/src/ports/SkAtomics_android.h
deleted file mode 100644
index 5025099cbb2616c38933147359748d7d25fd017a..0000000000000000000000000000000000000000
--- a/src/ports/SkAtomics_android.h
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * Copyright 2013 Google Inc.
- *
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-#ifndef SkAtomics_android_DEFINED
-#define SkAtomics_android_DEFINED
-
-/** Android framework atomics. */
-
-#include <cutils/atomic.h>
-#include <stdint.h>
-
-static inline __attribute__((always_inline)) int32_t sk_atomic_inc(int32_t* addr) {
- return android_atomic_inc(addr);
-}
-
-static inline __attribute__((always_inline)) int32_t sk_atomic_add(int32_t* addr, int32_t inc) {
- return android_atomic_add(inc, addr);
-}
-
-static inline __attribute__((always_inline)) int32_t sk_atomic_dec(int32_t* addr) {
- return android_atomic_dec(addr);
-}
-
-static inline __attribute__((always_inline)) void sk_membar_acquire__after_atomic_dec() {
- //HACK: Android is actually using full memory barriers.
- // Should this change, uncomment below.
- //int dummy;
- //android_atomic_acquire_store(0, &dummy);
-}
-
-static inline __attribute__((always_inline)) bool sk_atomic_cas(int32_t* addr,
- int32_t before,
- int32_t after) {
- // android_atomic_release_cas returns 0 for success (if *addr == before and it wrote after).
- return android_atomic_release_cas(before, after, addr) == 0;
-}
-
-static inline __attribute__((always_inline)) void sk_membar_acquire__after_atomic_conditional_inc() {
- //HACK: Android is actually using full memory barriers.
- // Should this change, uncomment below.
- //int dummy;
- //android_atomic_acquire_store(0, &dummy);
-}
-
-#endif
« no previous file with comments | « include/core/SkPostConfig.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698