diff options
author | Andreas Hansson <andreas.hansson@arm.com> | 2014-10-16 05:49:51 -0400 |
---|---|---|
committer | Andreas Hansson <andreas.hansson@arm.com> | 2014-10-16 05:49:51 -0400 |
commit | a2d246b6b8379f9a74dbc56feefc155f615b5ea4 (patch) | |
tree | bbfaf7a39edebda5ca7ddac9af5e205823d37e10 /src/sim/faults.hh | |
parent | a769963d16b7b259580fa2da1e84f62aae0a5a42 (diff) | |
download | gem5-a2d246b6b8379f9a74dbc56feefc155f615b5ea4.tar.xz |
arch: Use shared_ptr for all Faults
This patch takes quite a large step in transitioning from the ad-hoc
RefCountingPtr to the c++11 shared_ptr by adopting its use for all
Faults. There are no changes in behaviour, and the code modifications
are mostly just replacing "new" with "make_shared".
Diffstat (limited to 'src/sim/faults.hh')
-rw-r--r-- | src/sim/faults.hh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/sim/faults.hh b/src/sim/faults.hh index 0377c0893..dd42c35ab 100644 --- a/src/sim/faults.hh +++ b/src/sim/faults.hh @@ -32,10 +32,8 @@ #ifndef __FAULTS_HH__ #define __FAULTS_HH__ -#include "base/refcnt.hh" #include "base/types.hh" #include "cpu/static_inst.hh" -#include "sim/fault_fwd.hh" #include "sim/stats.hh" class ThreadContext; @@ -50,7 +48,7 @@ typedef Stats::Scalar FaultStat; // all faults returned using the Fault type) will use the // generic FaultBase name. -class FaultBase : public RefCounted +class FaultBase { public: virtual FaultName name() const = 0; |