VerifyOrDie macro
Checks for the specified condition, which is expected to commonly be true, and both records exit status and terminates the program if the condition is false.
Syntax
#define VerifyOrDie(aCondition, aExitCode) \
do \
{ \
if (!(aCondition)) \
{ \
const char *start = strrchr(__FILE__, '/'); \
OT_UNUSED_VARIABLE(start); \
otLogCritPlat("%s() at %s:%d: %s", __func__, (start ? start + 1 : __FILE__), __LINE__, \
otExitCodeToString(aExitCode)); \
exit(aExitCode); \
} \
} while (false)
Arguments
aCondition
The condition to verify