thermal_domain.hh (11442:b31738224fb0) thermal_domain.hh (11800:54436a1784dc)
1/*
2 * Copyright (c) 2015 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 31 unchanged lines hidden (view full) ---

40#ifndef __SIM_THERMAL_DOMAIN_HH__
41#define __SIM_THERMAL_DOMAIN_HH__
42
43#include <vector>
44
45#include "base/statistics.hh"
46#include "params/ThermalDomain.hh"
47#include "sim/power/thermal_entity.hh"
1/*
2 * Copyright (c) 2015 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 31 unchanged lines hidden (view full) ---

40#ifndef __SIM_THERMAL_DOMAIN_HH__
41#define __SIM_THERMAL_DOMAIN_HH__
42
43#include <vector>
44
45#include "base/statistics.hh"
46#include "params/ThermalDomain.hh"
47#include "sim/power/thermal_entity.hh"
48#include "sim/probe/probe.hh"
49#include "sim/sim_object.hh"
48#include "sim/sim_object.hh"
50#include "sim/sub_system.hh"
51
49
50class SubSystem;
52class ThermalNode;
51class ThermalNode;
52template <class T> class ProbePointArg;
53
54/**
55 * A ThermalDomain is used to group objects under that operate under
56 * the same temperature. Theses domains can be tied together using thermal
57 * models (such as RC) to model temperature across components.
58 */
59class ThermalDomain : public SimObject, public ThermalEntity
60{

--- 55 unchanged lines hidden ---
53
54/**
55 * A ThermalDomain is used to group objects under that operate under
56 * the same temperature. Theses domains can be tied together using thermal
57 * models (such as RC) to model temperature across components.
58 */
59class ThermalDomain : public SimObject, public ThermalEntity
60{

--- 55 unchanged lines hidden ---