| 97 | } |
| 98 | |
| 99 | static void SetThread(LruCache<int, int> *cache) { |
| 100 | int64_t now = RealtimeClock.MicroSeconds(); |
| 101 | int multiplier = 1; |
| 102 | while (RealtimeClock.MicroSeconds() - now < 500) { |
| 103 | SetCache(cache, multiplier); |
| 104 | ++multiplier; |
| 105 | } |
| 106 | } |
| 107 | |
| 108 | static void ReadThread(LruCache<int, int> *cache) { |
| 109 | int64_t now = RealtimeClock.MicroSeconds(); |
nothing calls this directly
no test coverage detected