Merge "profcollect: trace on background thread" am: f8eb7b136c
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1894997 Change-Id: Ib0fa8116de75f3f2282e4ef53a9f26b67edd29de
This commit is contained in:
commit
d353c81c5c
@ -234,14 +234,16 @@ public final class ProfcollectForwardingService extends SystemService {
|
||||
"applaunch_trace_freq", 2);
|
||||
int randomNum = ThreadLocalRandom.current().nextInt(100);
|
||||
if (randomNum < traceFrequency) {
|
||||
try {
|
||||
if (DEBUG) {
|
||||
Log.d(LOG_TAG, "Tracing on app launch event: " + packageName);
|
||||
}
|
||||
mIProfcollect.trace_once("applaunch");
|
||||
} catch (RemoteException e) {
|
||||
Log.e(LOG_TAG, e.getMessage());
|
||||
if (DEBUG) {
|
||||
Log.d(LOG_TAG, "Tracing on app launch event: " + packageName);
|
||||
}
|
||||
BackgroundThread.get().getThreadHandler().post(() -> {
|
||||
try {
|
||||
mIProfcollect.trace_once("applaunch");
|
||||
} catch (RemoteException e) {
|
||||
Log.e(LOG_TAG, e.getMessage());
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user