diff options
Diffstat (limited to 'cpu/ixp/npe/include/IxOsalOsAssert.h')
-rw-r--r-- | cpu/ixp/npe/include/IxOsalOsAssert.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/cpu/ixp/npe/include/IxOsalOsAssert.h b/cpu/ixp/npe/include/IxOsalOsAssert.h new file mode 100644 index 0000000..9d1ecb4 --- /dev/null +++ b/cpu/ixp/npe/include/IxOsalOsAssert.h @@ -0,0 +1,10 @@ +#ifndef IxOsalOsAssert_H +#define IxOsalOsAssert_H + +#define IX_OSAL_OS_ASSERT(c) if(!(c)) \ + { \ + ixOsalLog (IX_OSAL_LOG_LVL_ERROR, IX_OSAL_LOG_DEV_STDOUT, "Assertion failure \n", 0, 0, 0, 0, 0, 0);\ + while(1); \ + } + +#endif // IxOsalOsAssert_H |