diff options
author | Gabe Black <gabeblack@google.com> | 2017-11-30 17:36:53 -0800 |
---|---|---|
committer | Gabe Black <gabeblack@google.com> | 2017-12-04 23:10:55 +0000 |
commit | 1088f0c4ac3999fc3c363cc51daef4cfb360a2bd (patch) | |
tree | 64b3cc0b13bd6ba6aa375163765d36b385d32663 /src/dev/net | |
parent | 86f18f26fc7223cc8a63a792d2be1267f573f97c (diff) | |
download | gem5-1088f0c4ac3999fc3c363cc51daef4cfb360a2bd.tar.xz |
misc: Rename misc.(hh|cc) to logging.(hh|cc)
These files aren't a collection of miscellaneous stuff, they're the
definition of the Logger interface, and a few utility macros for
calling into that interface (panic, warn, etc.).
Change-Id: I84267ac3f45896a83c0ef027f8f19c5e9a5667d1
Reviewed-on: https://gem5-review.googlesource.com/6226
Reviewed-by: Brandon Potter <Brandon.Potter@amd.com>
Maintainer: Gabe Black <gabeblack@google.com>
Diffstat (limited to 'src/dev/net')
-rw-r--r-- | src/dev/net/dist_iface.hh | 2 | ||||
-rw-r--r-- | src/dev/net/etherbus.cc | 2 | ||||
-rw-r--r-- | src/dev/net/etherdump.cc | 2 | ||||
-rw-r--r-- | src/dev/net/etherint.cc | 2 | ||||
-rw-r--r-- | src/dev/net/etherpkt.cc | 2 | ||||
-rw-r--r-- | src/dev/net/ethertap.cc | 2 | ||||
-rw-r--r-- | src/dev/net/pktfifo.cc | 2 | ||||
-rw-r--r-- | src/dev/net/pktfifo.hh | 2 |
8 files changed, 8 insertions, 8 deletions
diff --git a/src/dev/net/dist_iface.hh b/src/dev/net/dist_iface.hh index c02c39530..c87a4c0bd 100644 --- a/src/dev/net/dist_iface.hh +++ b/src/dev/net/dist_iface.hh @@ -83,7 +83,7 @@ #include <thread> #include <utility> -#include "base/misc.hh" +#include "base/logging.hh" #include "dev/net/dist_packet.hh" #include "dev/net/etherpkt.hh" #include "sim/core.hh" diff --git a/src/dev/net/etherbus.cc b/src/dev/net/etherbus.cc index 243e27b18..7e086bfb0 100644 --- a/src/dev/net/etherbus.cc +++ b/src/dev/net/etherbus.cc @@ -38,7 +38,7 @@ #include <string> #include <vector> -#include "base/misc.hh" +#include "base/logging.hh" #include "base/trace.hh" #include "debug/Ethernet.hh" #include "debug/EthernetData.hh" diff --git a/src/dev/net/etherdump.cc b/src/dev/net/etherdump.cc index 1fe462764..64444d578 100644 --- a/src/dev/net/etherdump.cc +++ b/src/dev/net/etherdump.cc @@ -38,7 +38,7 @@ #include <algorithm> #include <string> -#include "base/misc.hh" +#include "base/logging.hh" #include "base/output.hh" #include "sim/core.hh" diff --git a/src/dev/net/etherint.cc b/src/dev/net/etherint.cc index b5990c7a0..0c5e6b817 100644 --- a/src/dev/net/etherint.cc +++ b/src/dev/net/etherint.cc @@ -30,7 +30,7 @@ #include "dev/net/etherint.hh" -#include "base/misc.hh" +#include "base/logging.hh" #include "sim/sim_object.hh" void diff --git a/src/dev/net/etherpkt.cc b/src/dev/net/etherpkt.cc index 22c0156d0..9b020197c 100644 --- a/src/dev/net/etherpkt.cc +++ b/src/dev/net/etherpkt.cc @@ -33,7 +33,7 @@ #include <iostream> #include "base/inet.hh" -#include "base/misc.hh" +#include "base/logging.hh" #include "sim/serialize.hh" using namespace std; diff --git a/src/dev/net/ethertap.cc b/src/dev/net/ethertap.cc index 59314e540..4b5b9bdb0 100644 --- a/src/dev/net/ethertap.cc +++ b/src/dev/net/ethertap.cc @@ -59,7 +59,7 @@ #include <deque> #include <string> -#include "base/misc.hh" +#include "base/logging.hh" #include "base/pollevent.hh" #include "base/socket.hh" #include "base/trace.hh" diff --git a/src/dev/net/pktfifo.cc b/src/dev/net/pktfifo.cc index 17aa54a78..f7bfcac59 100644 --- a/src/dev/net/pktfifo.cc +++ b/src/dev/net/pktfifo.cc @@ -30,7 +30,7 @@ #include "dev/net/pktfifo.hh" -#include "base/misc.hh" +#include "base/logging.hh" using namespace std; diff --git a/src/dev/net/pktfifo.hh b/src/dev/net/pktfifo.hh index 456c4433b..397d86b11 100644 --- a/src/dev/net/pktfifo.hh +++ b/src/dev/net/pktfifo.hh @@ -35,7 +35,7 @@ #include <list> #include <string> -#include "base/misc.hh" +#include "base/logging.hh" #include "dev/net/etherpkt.hh" #include "sim/serialize.hh" |