u-boot-brain/arch/arm/cpu/ixp/npe/include/IxOsalOsAssert.h
Peter Tyser 84ad688473 arm: Move cpu/$CPU to arch/arm/cpu/$CPU
Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2010-04-13 09:13:24 +02:00

11 lines
381 B
C

#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 */