summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAndy McFadden <fadden@android.com>2012-09-12 13:22:35 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-09-12 13:22:35 -0700
commitc272430960047de4e9b2f169fb053bd0aedce3b1 (patch)
treed97ae8f4f83df05e144288af754776bf09d4c84e /include
parenta0931d657551f5098f805fbdeeed2b060bbe6171 (diff)
parent6652b3edcb7ef5402c05db12f477ceb23c27d6ec (diff)
downloadframeworks_native-c272430960047de4e9b2f169fb053bd0aedce3b1.zip
frameworks_native-c272430960047de4e9b2f169fb053bd0aedce3b1.tar.gz
frameworks_native-c272430960047de4e9b2f169fb053bd0aedce3b1.tar.bz2
Merge "Watch for SurfaceFlinger death" into jb-mr1-dev
Diffstat (limited to 'include')
-rw-r--r--include/private/gui/ComposerService.h15
1 files changed, 14 insertions, 1 deletions
diff --git a/include/private/gui/ComposerService.h b/include/private/gui/ComposerService.h
index c2761b8..ff2f9bf 100644
--- a/include/private/gui/ComposerService.h
+++ b/include/private/gui/ComposerService.h
@@ -33,13 +33,26 @@ class ISurfaceComposer;
// ---------------------------------------------------------------------------
+// This holds our connection to the composer service (i.e. SurfaceFlinger).
+// If the remote side goes away, we will re-establish the connection.
+// Users of this class should not retain the value from
+// getComposerService() for an extended period.
+//
+// (It's not clear that using Singleton is useful here anymore.)
class ComposerService : public Singleton<ComposerService>
{
- // these are constants
sp<ISurfaceComposer> mComposerService;
+ sp<IBinder::DeathRecipient> mDeathObserver;
+ Mutex mLock;
+
ComposerService();
+ void connectLocked();
+ void composerServiceDied();
friend class Singleton<ComposerService>;
public:
+
+ // Get a connection to the Composer Service. This will block until
+ // a connection is established.
static sp<ISurfaceComposer> getComposerService();
};