summaryrefslogtreecommitdiff
path: root/profcollectd/libprofcollectd/service.rs
diff options
context:
space:
mode:
authorYi Kong <yikong@google.com>2021-12-09 01:37:57 +0800
committerYi Kong <yikong@google.com>2021-12-08 17:57:37 +0000
commit87d0a1757388ea06be70906f33033a0a57387a70 (patch)
treedbceb023245c44e1b7c77970adc9f031ba8b801c /profcollectd/libprofcollectd/service.rs
parent356882916927b437f4ec3d4987245d7f46d81d4a (diff)
downloadextras-87d0a1757388ea06be70906f33033a0a57387a70.tar.gz
profcollectd: include apex binaries in binary filter
Also make binary filter controlled by device config. Test: manual Bug: 79161490 Change-Id: I9fbb393eb7c46fbef9640ccb8b31e22c498254ef
Diffstat (limited to 'profcollectd/libprofcollectd/service.rs')
-rw-r--r--profcollectd/libprofcollectd/service.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/profcollectd/libprofcollectd/service.rs b/profcollectd/libprofcollectd/service.rs
index 0062b2b3..701edff6 100644
--- a/profcollectd/libprofcollectd/service.rs
+++ b/profcollectd/libprofcollectd/service.rs
@@ -74,7 +74,7 @@ impl IProfCollectd for ProfcollectdBinderService {
fn process(&self) -> BinderResult<()> {
let lock = &mut *self.lock();
lock.scheduler
- .process()
+ .process(&lock.config)
.context("Failed to process profiles.")
.map_err(err_to_binder_status)
}