A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
abort.h File Reference
#include "fatal-error.h"
+ Include dependency graph for abort.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define NS_ABORT_IF(cond)
 Abnormal program termination if cond is true. More...
 
#define NS_ABORT_MSG(msg)
 Abnormal program termination. More...
 
#define NS_ABORT_MSG_IF(cond, msg)
 Abnormal program termination if cond is true. More...
 
#define NS_ABORT_MSG_UNLESS(cond, msg)   NS_ABORT_MSG_IF (!(cond),msg)
 Abnormal program termination if cond is false. More...
 
#define NS_ABORT_UNLESS(cond)   NS_ABORT_IF (!(cond))
 Abnormal program termination if cond is false. More...