Change how a null threadgroup is displayed.
We used to show "(BOGUS GROUP)", but that's not quite accurate since
the group is actually NULL. Since there are now circumstances in
which you see this, and they'll likely be associated with Thread
initialization, it's more accurate and useful to say
"(null; initializing?)" instead.
Bug 2804256.
Change-Id: I2b18b5ee37ac3c4eaf804c01aa68d922f0af0ac3
diff --git a/vm/Thread.c b/vm/Thread.c
index 8d2cff3..56cafb4 100644
--- a/vm/Thread.c
+++ b/vm/Thread.c
@@ -3510,7 +3510,7 @@
}
}
if (groupName == NULL)
- groupName = strdup("(BOGUS GROUP)");
+ groupName = strdup("(null; initializing?)");
dvmPrintDebugMessage(target,
"\"%s\"%s prio=%d tid=%d %s%s\n",