* commit 'eb38d85260073470e5a27af820fe6cd9f2bc35ae': fix SurfaceFlinger DDMS debugging
This commit is contained in:
commit
4dae9ebd80
@ -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
|
||||
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user