diff options
author | 2022-05-24 20:49:58 +0000 | |
---|---|---|
committer | 2022-06-16 18:15:48 +0000 | |
commit | 8a289a650cef6960e517eb4ad929918bee3ce62b (patch) | |
tree | a8e8b45ac2c4f10742e885a0aed58de91db6f8ae | |
parent | 5a1f9e675b10b3bf150f64c85068b8a1f1026d57 (diff) |
s/get_interesting_hal_pids/get_interesting_pids.
Since pids can belong to non hal processes as well, in theory.
Bug: 233130219
Test: build
Merged-In: I8ef6b2aaa871f6a8f992887a394d81c544e9cba4
Change-Id: I8ef6b2aaa871f6a8f992887a394d81c544e9cba4
Signed-off-by: Jayant Chowdhary <jchowdhary@google.com>
(cherry picked from commit d1ce457da1f7c467c11d74f6550f6918806744a9)
-rw-r--r-- | cmds/incidentd/src/Section.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/incidentd/src/Section.cpp b/cmds/incidentd/src/Section.cpp index e56ed39ea32e..581367a75804 100644 --- a/cmds/incidentd/src/Section.cpp +++ b/cmds/incidentd/src/Section.cpp @@ -733,7 +733,7 @@ status_t TombstoneSection::BlockingCall(unique_fd& pipeWriteFd) const { return -errno; } - const std::set<int> hal_pids = get_interesting_hal_pids(); + const std::set<int> hal_pids = get_interesting_pids(); auto pooledBuffer = get_buffer_from_pool(); ProtoOutputStream proto(pooledBuffer); |