Initialize mStopThread in Sensor constructor

Bug: 294653181
Bug: 294500012
Test: Presubmit
Change-Id: I9c9a9119eb75e364d3969ae77248370937f1f3c5
This commit is contained in:
Aditya Chitnis 2023-08-18 22:21:56 +00:00
parent fed7d54dfc
commit 5d346fb79c

View file

@ -40,6 +40,7 @@ Sensor::Sensor(ISensorsEventCallback* callback)
: mIsEnabled(false),
mSamplingPeriodNs(0),
mLastSampleTimeNs(0),
mStopThread(false),
mCallback(callback),
mMode(OperationMode::NORMAL) {
mRunThread = std::thread(startThread, this);