Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d469600a authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "mItarSpeedLimitExceeded thread safety"

parents f32edc9f 042c48f8
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -417,7 +417,11 @@ public class GnssLocationProvider implements LocationProviderInterface {
    // stops output right at 600m/s, depriving this of the information of a device that reaches
    // greater than 600m/s, and higher than the speed of sound to avoid impacting most use cases.
    private static final float ITAR_SPEED_LIMIT_METERS_PER_SECOND = 400.0F;
    private boolean mItarSpeedLimitExceeded = false;

    // TODO: improve comment
    // Volatile to ensure that potentially near-concurrent outputs from HAL
    // react to this value change promptly
    private volatile boolean mItarSpeedLimitExceeded = false;

    // GNSS Metrics
    private GnssMetrics mGnssMetrics;