summaryrefslogtreecommitdiff
path: root/src/sim/system.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/sim/system.hh')
-rw-r--r--src/sim/system.hh5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/sim/system.hh b/src/sim/system.hh
index 3954b35c2..7584cebc9 100644
--- a/src/sim/system.hh
+++ b/src/sim/system.hh
@@ -61,6 +61,7 @@
#include "mem/port_proxy.hh"
#include "mem/physical.hh"
#include "params/System.hh"
+#include "sim/se_signal.hh"
/**
* To avoid linking errors with LTO, only include the header if we
@@ -556,6 +557,10 @@ class System : public MemObject
/** Process set to track which PIDs have already been allocated */
std::set<int> PIDs;
+ // By convention, all signals are owned by the receiving process. The
+ // receiver will delete the signal upon reception.
+ std::list<BasicSignal> signalList;
+
protected:
/**