1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
3 * Copyright (c) 2008 INRIA
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation;
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include "fatal-error.h"
24 #define NS_ABORT_MSG(msg) \
26 std::cerr << "file=" << __FILE__ << \
27 ", line=" << __LINE__ << ", abort, msg=\"" << \
28 msg << "\"" << std::endl; \
34 #define NS_ABORT_IF(cond) \
38 std::cerr << "file=" << __FILE__ << \
39 ", line=" << __LINE__ << ", abort on=\""#cond << \
46 #define NS_ABORT_MSG_IF(cond, msg) \
50 std::cerr << "file=" << __FILE__ << \
51 ", line=" << __LINE__ << ", abort on=\""#cond << \
52 "\", msg=\"" << msg << "\"" << std::endl; \
58 #define NS_ABORT_UNLESS(cond) \
61 #define NS_ABORT_MSG_UNLESS(cond, msg) \
62 NS_ABORT_MSG_IF(!(cond),msg)
64 #endif /* NS3_ABORT_H */