mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-07-04 11:27:16 -04:00
Fix formatting check
Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com>
This commit is contained in:
parent
f2fecf69c1
commit
5e7aa6e3d4
|
@ -415,6 +415,8 @@
|
|||
* number of the failing assert (for example, "vAssertCalled( __FILE__, __LINE__
|
||||
* )" or it can simple disable interrupts and sit in a loop to halt all
|
||||
* execution on the failing line for viewing in a debugger. */
|
||||
|
||||
/* *INDENT-OFF* */
|
||||
#define configASSERT( x ) \
|
||||
if( ( x ) == 0 ) \
|
||||
{ \
|
||||
|
@ -422,6 +424,7 @@
|
|||
for( ; ; ) \
|
||||
; \
|
||||
}
|
||||
/* *INDENT-ON* */
|
||||
|
||||
/******************************************************************************/
|
||||
/* FreeRTOS MPU specific definitions. *****************************************/
|
||||
|
|
|
@ -246,7 +246,10 @@ void vCoRoutineSchedule( void );
|
|||
* \defgroup crSTART crSTART
|
||||
* \ingroup Tasks
|
||||
*/
|
||||
|
||||
/* *INDENT-OFF* */
|
||||
#define crEND() }
|
||||
/* *INDENT-ON* */
|
||||
|
||||
/*
|
||||
* These macros are intended for internal use by the co-routine implementation
|
||||
|
|
Loading…
Reference in a new issue