* Return true if the timeout is active (enabled and not yet fired) * * This is, of course, subject to race conditions, as the timeout could fire * immediately after we look. */
| 726 | * immediately after we look. |
| 727 | */ |
| 728 | bool |
| 729 | get_timeout_active(TimeoutId id) |
| 730 | { |
| 731 | return all_timeouts[id].active; |
| 732 | } |
| 733 | |
| 734 | /* |
| 735 | * Return the timeout's I've-been-fired indicator |
no outgoing calls
no test coverage detected