commit | 9a85d30228b2752f08887d5f40f7c18c25af959d | [log] [tgz] |
---|---|---|
author | Carlos Llamas <cmllamas@google.com> | Sat Sep 23 22:41:22 2023 +0000 |
committer | Alice Ryhl <aliceryhl@google.com> | Fri Jan 05 12:42:30 2024 +0000 |
tree | 8bb040a737b87523590847ec0c7f52f6318ebc4a | |
parent | b21d7fdac110502e77e6e9e6f7c7681fc991d784 [diff] |
binderThroughputTest: only parse user latency once The latency seems already capped by atoi() so there is no need of doing a reparse via strtoull(). Besides any values above INT_MAX microseconds don't really make sense for this test. The conversion into nanoseconds doesn't overflow this way either: INT_MAX * 1000ull < UINT64_MAX. Change-Id: I603bbeee2e94c9975e502c1af1c1c2bbcc82f79a Signed-off-by: Carlos Llamas <cmllamas@google.com>