misc: Fix some includes

Fix some missing and extra includes around the codebase.

Change-Id: Ibf314b43a966943a8096958f68382e1e245f29e3
Signed-off-by: Daniel R. Carvalho <odanrc@yahoo.com.br>
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/38738
Reviewed-by: Bobby R. Bruce <bbruce@ucdavis.edu>
Maintainer: Bobby R. Bruce <bbruce@ucdavis.edu>
Tested-by: kokoro <noreply+kokoro@google.com>
This commit is contained in:
Daniel R. Carvalho
2020-12-27 13:35:48 -03:00
committed by Daniel Carvalho
parent f213abb63a
commit 3a8df68388
68 changed files with 178 additions and 41 deletions

View File

@@ -40,11 +40,7 @@
#include <algorithm>
#include "base/logging.hh"
#include "base/random.hh"
#include "base/trace.hh"
#include "cpu/testers/traffic_gen/base.hh"
#include "debug/TrafficGen.hh"
#include "sim/system.hh"
BaseGen::BaseGen(SimObject &obj, RequestorID requestor_id, Tick _duration)
: _name(obj.name()), requestorId(requestor_id),

View File

@@ -43,6 +43,7 @@
#ifndef __CPU_TRAFFIC_GEN_BASE_GEN_HH__
#define __CPU_TRAFFIC_GEN_BASE_GEN_HH__
#include <cstdint>
#include <string>
#include "base/types.hh"