| 9144 | } |
| 9145 | #else |
| 9146 | bool TimeoutTimer::expired() const |
| 9147 | { |
| 9148 | if (!m_start) |
| 9149 | return false; |
| 9150 | |
| 9151 | const SINT64 t = currTime(); |
| 9152 | return t >= m_start + m_value - 1; |
| 9153 | } |
| 9154 | |
| 9155 | unsigned int TimeoutTimer::timeToExpire() const |
| 9156 | { |
no outgoing calls
no test coverage detected