Rename the info function to inform to avoid likely name conflicts
authorNathan Binkert <nate@binkert.org>
Fri, 10 Oct 2008 19:17:53 +0000 (12:17 -0700)
committerNathan Binkert <nate@binkert.org>
Fri, 10 Oct 2008 19:17:53 +0000 (12:17 -0700)
src/base/misc.hh
src/sim/simulate.cc

index 5bb4e0e7763a1273daaa9c648c68ab374c26f670..25dcbaa6268280df65ab8e794fc43216e5afcd83 100644 (file)
@@ -135,14 +135,14 @@ extern bool want_hack, hack_verbose;
 
 #define warn(...) \
     cond_message(want_warn, std::cerr, "warn", warn_verbose, __VA_ARGS__)
-#define info(...) \
+#define inform(...) \
     cond_message(want_info, std::cout, "info", info_verbose, __VA_ARGS__)
 #define hack(...) \
     cond_message(want_hack, std::cerr, "hack", hack_verbose, __VA_ARGS__)
 
 #define warn_once(...) \
     cond_message_once(want_warn, std::cerr, "warn", warn_verbose, __VA_ARGS__)
-#define info_once(...) \
+#define inform_once(...) \
     cond_message_once(want_info, std::cout, "info", info_verbose, __VA_ARGS__)
 #define hack_once(...) \
     cond_message_once(want_hack, std::cerr, "hack", hack_verbose, __VA_ARGS__)
index 7f40805e6b9b7f70e16fe3c89e713e29abc02da0..9af873f902c7c1c0b10368b9c346e5629f1135b5 100644 (file)
@@ -47,7 +47,7 @@
 SimLoopExitEvent *
 simulate(Tick num_cycles)
 {
-    info("Entering event queue @ %d.  Starting simulation...\n", curTick);
+    inform("Entering event queue @ %d.  Starting simulation...\n", curTick);
 
     if (num_cycles < 0)
         fatal("simulate: num_cycles must be >= 0 (was %d)\n", num_cycles);