OSDN Git Service

fix SurfaceFlinger DDMS debugging
authorMathias Agopian <mathias@google.com>
Sun, 7 Oct 2012 23:41:12 +0000 (16:41 -0700)
committerMathias Agopian <mathias@google.com>
Sun, 7 Oct 2012 23:41:12 +0000 (16:41 -0700)
DdmHandleAppName.setAppName() signature changed which broke
this debugging feature.

Needed for debugging b\7267680

Change-Id: I4482bf5a441e91bef89d1ddea9a4152333be7f88

services/surfaceflinger/Android.mk
services/surfaceflinger/DdmConnection.cpp

index 6db89f0..0d559e7 100644 (file)
@@ -3,7 +3,6 @@ include $(CLEAR_VARS)
 
 LOCAL_SRC_FILES:= \
     Client.cpp                              \
-    DdmConnection.cpp                       \
     DisplayDevice.cpp                       \
     EventThread.cpp                         \
     Layer.cpp                               \
@@ -58,6 +57,8 @@ include $(BUILD_SHARED_LIBRARY)
 # uses jni which may not be available in PDK
 ifneq ($(wildcard libnativehelper/include),)
 include $(CLEAR_VARS)
+LOCAL_CFLAGS:= -DLOG_TAG=\"SurfaceFlinger\"
+
 LOCAL_SRC_FILES:= \
     DdmConnection.cpp
 
index ece965c..d2c977d 100644 (file)
@@ -78,10 +78,10 @@ void DdmConnection::start(const char* name) {
             startClass = env->FindClass("android/ddm/DdmHandleAppName");
             if (startClass) {
                 startMeth = env->GetStaticMethodID(startClass,
-                        "setAppName", "(Ljava/lang/String;)V");
+                        "setAppName", "(Ljava/lang/String;I)V");
                 if (startMeth) {
                     jstring str = env->NewStringUTF(name);
-                    env->CallStaticVoidMethod(startClass, startMeth, str);
+                    env->CallStaticVoidMethod(startClass, startMeth, str, getuid());
                     env->DeleteLocalRef(str);
                 }
             }