Update FreeRTOS.h with the version in GitHub. This is also to test submodule.

This commit is contained in:
Yuhui.Zheng 2019-09-24 22:29:35 +00:00
parent 0fe36e497d
commit eb5c60c60b

View file

@ -241,12 +241,11 @@ extern "C" {
#define configASSERT_DEFINED 1 #define configASSERT_DEFINED 1
#endif #endif
/* configPRECONDITION should resolve to configASSERT. The CBMC proofs need a way /* configPRECONDITION should be resolve to configASSERT.
to track assumptions and assertions. The CBMC proofs need a way to track assumptions and assertions.
- A configPRECONDITION statement should express an implicit invariant or A configPRECONDITION statement should express an implicit invariant or assumption made.
assumption made. A configASSERT statement should express an invariant that must hold explicit before calling
- A configASSERT statement should express an invariant that must hold explicit the code. */
before calling the code. */
#ifndef configPRECONDITION #ifndef configPRECONDITION
#define configPRECONDITION( X ) configASSERT(X) #define configPRECONDITION( X ) configASSERT(X)
#define configPRECONDITION_DEFINED 0 #define configPRECONDITION_DEFINED 0