diff options
| author | 2020-07-15 09:10:42 +0000 | |
|---|---|---|
| committer | 2020-07-15 09:10:42 +0000 | |
| commit | f2cc99bedc5b87c5c44f3e9f4f5b01c9018abe5d (patch) | |
| tree | ab75fcf0c0b7f921ecd7fa43fb8e170fcc587a85 | |
| parent | e87d1ee505a4faa6221d23ea1de79a68c41516ef (diff) | |
| parent | 19c54b36224d223273d6efd4d96e3dc246ac1e9b (diff) | |
Add thermal category to atrace. am: e3079a9982 am: e208ed66e6 am: 19c54b3622
Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/1362700
Change-Id: Ia2190df44d2112d9a392b7a67d3d970f693c201b
| -rw-r--r-- | cmds/atrace/atrace.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cmds/atrace/atrace.cpp b/cmds/atrace/atrace.cpp index 28fdaa4306..fc3572c347 100644 --- a/cmds/atrace/atrace.cpp +++ b/cmds/atrace/atrace.cpp @@ -239,6 +239,10 @@ static const TracingCategory k_categories[] = { { OPT, "events/kmem/ion_heap_shrink/enable" }, { OPT, "events/ion/ion_stat/enable" }, } }, + { "thermal", "Thermal event", 0, { + { REQ, "events/thermal/thermal_temperature/enable" }, + { OPT, "events/thermal/cdev_update/enable" }, + } }, }; struct TracingVendorCategory { |