| 70 | } |
| 71 | |
| 72 | void SpinWait::spinUntil(const std::function< bool() >& condition) |
| 73 | { |
| 74 | spinUntil(condition, -1); |
| 75 | } |
| 76 | |
| 77 | bool SpinWait::spinUntil(const std::function< bool() >& condition, std::int64_t millisecondsTimeout) |
| 78 | { |
nothing calls this directly
no test coverage detected