Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4a2de0a0 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "ProcessState: thread name includes driver" am: 87717df3

Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/1977549

Change-Id: Icc83be4447e082cdefdbf7039a4e9ab29d875980
parents c7a9c266 87717df3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -368,7 +368,7 @@ String8 ProcessState::makeBinderThreadName() {
    int32_t s = android_atomic_add(1, &mThreadPoolSeq);
    pid_t pid = getpid();
    String8 name;
    name.appendFormat("Binder:%d_%X", pid, s);
    name.appendFormat("%d_%X:%s", pid, s, mDriverName.c_str());
    return name;
}