| 4088 | /*-----------------------------------------------------------*/ |
| 4089 | |
| 4090 | void vTaskInternalSetTimeOutState( TimeOut_t * const pxTimeOut ) |
| 4091 | { |
| 4092 | /* For internal use only as it does not use a critical section. */ |
| 4093 | pxTimeOut->xOverflowCount = xNumOfOverflows; |
| 4094 | pxTimeOut->xTimeOnEntering = xTickCount; |
| 4095 | } |
| 4096 | /*-----------------------------------------------------------*/ |
| 4097 | |
| 4098 | BaseType_t xTaskCheckForTimeOut( TimeOut_t * const pxTimeOut, |
no outgoing calls
no test coverage detected