OSDN Git Service

Snap for 4778776 from e5a5cfb39fd8afefcca9c51a6728aa0d3637a1ae to pi-release
[android-x86/system-media.git] / audio_utils / fifo_index.cpp
index d9a200a..ebb085d 100644 (file)
@@ -27,6 +27,7 @@ uint32_t audio_utils_fifo_index::loadAcquire()
     return atomic_load_explicit(&mIndex, std::memory_order_acquire);
 }
 
+// FIXME should inline this, so that writer32 can also inline it
 void audio_utils_fifo_index::storeRelease(uint32_t value)
 {
     atomic_store_explicit(&mIndex, value, std::memory_order_release);