diff options
| author | 2024-11-26 15:49:23 -0800 | |
|---|---|---|
| committer | 2024-11-27 15:34:18 -0800 | |
| commit | 3914b179cab46a8ecb1c038f8a80302ed1951907 (patch) | |
| tree | 808ed01a0cd7cb05005d836436a255bad8a7fdcd | |
| parent | f41f24f51387a130743309cda9d79d3d2625d83a (diff) | |
Disable stack-walking for coroutine tracing
Test: atest SystemUITests
Bug: 375827224
Flag: com.android.systemui.coroutine_tracing
Change-Id: I31057508661c54e1798084751b9e99e896fc3a61
| -rw-r--r-- | packages/SystemUI/common/src/com/android/systemui/coroutines/Tracing.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/common/src/com/android/systemui/coroutines/Tracing.kt b/packages/SystemUI/common/src/com/android/systemui/coroutines/Tracing.kt index efbdf4d1533d..0abeeb7d62a8 100644 --- a/packages/SystemUI/common/src/com/android/systemui/coroutines/Tracing.kt +++ b/packages/SystemUI/common/src/com/android/systemui/coroutines/Tracing.kt @@ -20,7 +20,7 @@ import com.android.app.tracing.coroutines.createCoroutineTracingContext import kotlin.coroutines.CoroutineContext fun newTracingContext(name: String): CoroutineContext { - return createCoroutineTracingContext(name, walkStackForDefaultNames = true) { className -> + return createCoroutineTracingContext(name, walkStackForDefaultNames = false) { className -> className.startsWith("com.android.systemui.util.kotlin.JavaAdapter") || className.startsWith("com.android.systemui.lifecycle.RepeatWhenAttached") } |