summaryrefslogtreecommitdiff
path: root/src/systemc/core/python.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/systemc/core/python.hh')
-rw-r--r--src/systemc/core/python.hh4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/systemc/core/python.hh b/src/systemc/core/python.hh
index 0d68c5916..d11310eda 100644
--- a/src/systemc/core/python.hh
+++ b/src/systemc/core/python.hh
@@ -37,6 +37,8 @@ namespace sc_gem5
struct PythonReadyFunc
{
+ PythonReadyFunc *next;
+
PythonReadyFunc();
~PythonReadyFunc() {}
virtual void run() = 0;
@@ -44,6 +46,8 @@ struct PythonReadyFunc
struct PythonInitFunc
{
+ PythonInitFunc *next;
+
PythonInitFunc();
~PythonInitFunc() {}
virtual void run(pybind11::module &systemc) = 0;