summaryrefslogtreecommitdiff
path: root/include/utils/BlobCache.h
diff options
context:
space:
mode:
author Jamie Gennis <jgennis@google.com> 2011-10-30 18:10:41 -0700
committer Jamie Gennis <jgennis@google.com> 2011-10-31 18:48:31 -0700
commit93ca6fb91c613c7dfa287571f32c5c44a797961f (patch)
treef143c7d8401956b12be9d33c23603351cfa1c6e2 /include/utils/BlobCache.h
parenta1304a1a8e8d33f7be0cfb7156dfb35d39b3a303 (diff)
BlobCache: remove the mutex locking
This change removes the mutex from the BlobCache class. The caller must be responsible for thread synchronization in order to properly implement the Flattenable interface, which is coming soon. Otherwise would be the potential for the cache contents to change between the call to the getFlattenedSize and flatten methods. Because the caller must do this synchronization anyway there's no reason to also some synchronization inside BlobCache. Change-Id: Ie1f4f6f82b78744f46a41ce863cac0cad276a20e
Diffstat (limited to 'include/utils/BlobCache.h')
-rw-r--r--include/utils/BlobCache.h11
1 files changed, 3 insertions, 8 deletions
diff --git a/include/utils/BlobCache.h b/include/utils/BlobCache.h
index dc45ff0f35..11d4246665 100644
--- a/include/utils/BlobCache.h
+++ b/include/utils/BlobCache.h
@@ -25,8 +25,8 @@
namespace android {
-// A BlobCache is an in-memory cache for binary key/value pairs. All the public
-// methods are thread-safe.
+// A BlobCache is an in-memory cache for binary key/value pairs. A BlobCache
+// does NOT provide any thread-safety guarantees.
//
// The cache contents can be serialized to a file and reloaded in a subsequent
// execution of the program. This serialization is non-portable and should only
@@ -166,17 +166,12 @@ private:
size_t mTotalSize;
// mRandState is the pseudo-random number generator state. It is passed to
- // nrand48 to generate random numbers when needed. It must be protected by
- // mMutex.
+ // nrand48 to generate random numbers when needed.
unsigned short mRandState[3];
// mCacheEntries stores all the cache entries that are resident in memory.
// Cache entries are added to it by the 'set' method.
SortedVector<CacheEntry> mCacheEntries;
-
- // mMutex is used to synchronize access to all member variables. It must be
- // locked any time the member variables are written or read.
- Mutex mMutex;
};
}