mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-10-16 01:37:45 -04:00
* move CBMC proofs to FreeRTOS+ directory * Failing proofs corrected * ParseDNSReply proof added back * removed queue_init.h from -Plus/Test Co-authored-by: Yuhui Zheng <10982575+yuhui-zheng@users.noreply.github.com>
10 lines
225 B
C
10 lines
225 B
C
#ifndef INC_TASK_STUBS_H
|
|
#define INC_TASK_STUBS_H
|
|
|
|
#include "FreeRTOS.h"
|
|
#include "task.h"
|
|
|
|
BaseType_t xState;
|
|
void vInitTaskCheckForTimeOut(BaseType_t maxCounter, BaseType_t maxCounter_limit);
|
|
|
|
#endif /* INC_TASK_STUBS_H */
|