| 89 | } |
| 90 | |
| 91 | bool deadcall::run() |
| 92 | { |
| 93 | if (clock_tick > expiration) { |
| 94 | delete this; |
| 95 | return false; |
| 96 | } else { |
| 97 | setPaused(); |
| 98 | return true; |
| 99 | } |
| 100 | } |
| 101 | |
| 102 | unsigned int deadcall::wake() |
| 103 | { |
nothing calls this directly
no outgoing calls
no test coverage detected