From 102d539a4c6e70ec2403bfd2bfef3a3373da15ac Mon Sep 17 00:00:00 2001 From: Glenn Kasten Date: Tue, 28 Feb 2012 12:30:08 -0800 Subject: Shorten thread names prctl(PR_SET_NAME) limits to 15 characters. Before we had names like "Binder Thread #" and the counter was cut off :-( Also remove redundant "thread" at end of name; it's always a thread. Change-Id: I1f99c2730ba0787ed9b59c15914356cddf698e2f --- libs/binder/ProcessState.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libs/binder') diff --git a/libs/binder/ProcessState.cpp b/libs/binder/ProcessState.cpp index f96fe50..9fa412c 100644 --- a/libs/binder/ProcessState.cpp +++ b/libs/binder/ProcessState.cpp @@ -286,8 +286,8 @@ void ProcessState::spawnPooledThread(bool isMain) { if (mThreadPoolStarted) { int32_t s = android_atomic_add(1, &mThreadPoolSeq); - char buf[32]; - sprintf(buf, "Binder Thread #%d", s); + char buf[16]; + snprintf(buf, sizeof(buf), "Binder_%X", s); ALOGV("Spawning new pooled thread, name=%s\n", buf); sp t = new PoolThread(isMain); t->run(buf); -- cgit v1.1