diff options
author | Mathias Agopian <mathias@google.com> | 2013-05-09 14:48:17 -0700 |
---|---|---|
committer | Mathias Agopian <mathias@google.com> | 2013-05-09 14:57:05 -0700 |
commit | 4bdc882800d4bab85ca2a99ee4369e62c6fd01cc (patch) | |
tree | 02571bd1ac8963fbc84d6ceae7d2fd4767fe589f /cmds | |
parent | 203a91a6cae0e3272e9b3becefc862d2c8a72e10 (diff) | |
download | frameworks_base-4bdc882800d4bab85ca2a99ee4369e62c6fd01cc.zip frameworks_base-4bdc882800d4bab85ca2a99ee4369e62c6fd01cc.tar.gz frameworks_base-4bdc882800d4bab85ca2a99ee4369e62c6fd01cc.tar.bz2 |
surfaceflinger is now always running in its own process
Change-Id: I4e04e1aa181b3ebe661354edd0b8dbbfd7a623a6
Diffstat (limited to 'cmds')
-rw-r--r-- | cmds/system_server/library/system_init.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/cmds/system_server/library/system_init.cpp b/cmds/system_server/library/system_init.cpp index ca84692..c1811fc 100644 --- a/cmds/system_server/library/system_init.cpp +++ b/cmds/system_server/library/system_init.cpp @@ -60,12 +60,6 @@ extern "C" status_t system_init() sm->asBinder()->linkToDeath(grim, grim.get(), 0); char propBuf[PROPERTY_VALUE_MAX]; - property_get("system_init.startsurfaceflinger", propBuf, "1"); - if (strcmp(propBuf, "1") == 0) { - // Start the SurfaceFlinger - SurfaceFlinger::instantiate(); - } - property_get("system_init.startsensorservice", propBuf, "1"); if (strcmp(propBuf, "1") == 0) { // Start the sensor service |