diff options
Diffstat (limited to 'include/cutils/atomic.h')
-rw-r--r-- | include/cutils/atomic.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/cutils/atomic.h b/include/cutils/atomic.h index a50bf0f..ae42eb8 100644 --- a/include/cutils/atomic.h +++ b/include/cutils/atomic.h @@ -90,13 +90,6 @@ void android_atomic_acquire_store(int32_t value, volatile int32_t* addr); void android_atomic_release_store(int32_t value, volatile int32_t* addr); /* - * Unconditional swap operation with release ordering. - * - * Stores the new value at *addr, and returns the previous value. - */ -int32_t android_atomic_swap(int32_t value, volatile int32_t* addr); - -/* * Compare-and-set operation with "acquire" or "release" ordering. * * This returns zero if the new value was successfully stored, which will |