------------------------- void Q3_ClearTaskID( int *taskID ) WARNING: Clearing a taskID will make that task never finish unless you intend to return the same taskID from somewhere else. ------------------------- */
| 578 | ------------------------- |
| 579 | */ |
| 580 | void Q3_TaskIDClear( int *taskID ) |
| 581 | { |
| 582 | *taskID = -1; |
| 583 | } |
| 584 | |
| 585 | /* |
| 586 | ------------------------- |
no outgoing calls
no test coverage detected