mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-10-14 00:37:44 -04:00
* Add uncrustify github workflow * Fix exclusion pattern * fix find expression * exclude uncrustify files * Uncrustify common demo and test files * exlude white space checking files * Fix EOL whitespace checker * Remove whitespaces from EOL * Fix space at EOL * Fix find spaces at EOL Co-authored-by: Archit Aggarwal <architag@amazon.com>
11 lines
258 B
C
11 lines
258 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 */
|