summaryrefslogtreecommitdiffstats
path: root/libs/ui/GraphicBufferAllocator.cpp
diff options
context:
space:
mode:
authorMathias Agopian <mathias@google.com>2010-03-25 14:34:49 -0700
committerMathias Agopian <mathias@google.com>2010-03-25 14:34:49 -0700
commitc8620b60d67390d2bd0fa0ce53cc63fc18c50244 (patch)
treeb289d7614f9950bdf8de025be2daa984a1f9ceb6 /libs/ui/GraphicBufferAllocator.cpp
parent016093a2c19b23985366b1ac2eb7cba730b62d46 (diff)
downloadframeworks_native-c8620b60d67390d2bd0fa0ce53cc63fc18c50244.zip
frameworks_native-c8620b60d67390d2bd0fa0ce53cc63fc18c50244.tar.gz
frameworks_native-c8620b60d67390d2bd0fa0ce53cc63fc18c50244.tar.bz2
fix [2545826] calling into gralloc with external lock held
Change-Id: I2d0e017382404c684c768a0dd0423d574213f10a
Diffstat (limited to 'libs/ui/GraphicBufferAllocator.cpp')
-rw-r--r--libs/ui/GraphicBufferAllocator.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/libs/ui/GraphicBufferAllocator.cpp b/libs/ui/GraphicBufferAllocator.cpp
index 57d5fc3..6ae7e74 100644
--- a/libs/ui/GraphicBufferAllocator.cpp
+++ b/libs/ui/GraphicBufferAllocator.cpp
@@ -78,8 +78,6 @@ static inline uint32_t clamp(uint32_t c) {
status_t GraphicBufferAllocator::alloc(uint32_t w, uint32_t h, PixelFormat format,
int usage, buffer_handle_t* handle, int32_t* stride)
{
- Mutex::Autolock _l(mLock);
-
// make sure to not allocate a 0 x 0 buffer
w = clamp(w);
h = clamp(h);
@@ -118,8 +116,6 @@ status_t GraphicBufferAllocator::alloc(uint32_t w, uint32_t h, PixelFormat forma
status_t GraphicBufferAllocator::free(buffer_handle_t handle)
{
- Mutex::Autolock _l(mLock);
-
status_t err;
if (sw_gralloc_handle_t::validate(handle) < 0) {
err = mAllocDev->free(mAllocDev, handle);