diff options
author | Nathan Binkert <nate@binkert.org> | 2011-01-10 11:11:20 -0800 |
---|---|---|
committer | Nathan Binkert <nate@binkert.org> | 2011-01-10 11:11:20 -0800 |
commit | bd18ac82877072a87745aaf7a104e7bb036c6c66 (patch) | |
tree | 0fb980aea5b81d79160105fbf505670be0cf5e72 /src/mem/ruby/common/Global.cc | |
parent | 8e262adf4fcc009776810b9795f907fcd468591c (diff) | |
download | gem5-bd18ac82877072a87745aaf7a104e7bb036c6c66.tar.xz |
ruby: get rid of ruby's Debug.hh
Get rid of the Debug class
Get rid of ASSERT and use assert
Use DPRINTFR for ProtocolTrace
Diffstat (limited to 'src/mem/ruby/common/Global.cc')
-rw-r--r-- | src/mem/ruby/common/Global.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mem/ruby/common/Global.cc b/src/mem/ruby/common/Global.cc index f780707e2..e771de7ae 100644 --- a/src/mem/ruby/common/Global.cc +++ b/src/mem/ruby/common/Global.cc @@ -28,7 +28,6 @@ #include "mem/ruby/common/Global.hh" -RubyEventQueue* g_eventQueue_ptr = NULL; -RubySystem* g_system_ptr = NULL; -Debug* g_debug_ptr = NULL; +RubyEventQueue* g_eventQueue_ptr = 0; +RubySystem* g_system_ptr = 0; |