mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-12-14 07:35:11 -05:00
12 lines
No EOL
209 B
C
12 lines
No EOL
209 B
C
#ifndef VERIFAST_ASM_H
|
|
#define VERIFAST_ASM_H
|
|
|
|
bool assert_fct(bool b)
|
|
{
|
|
assert(b);
|
|
return b;
|
|
}
|
|
#undef portCHECK_IF_IN_ISR
|
|
#define portCHECK_IF_IN_ISR() assert_fct(false)
|
|
|
|
#endif /* VERIFAST_ASM_H */ |