From: Gabe Black Date: Wed, 29 Aug 2018 06:32:50 +0000 (-0700) Subject: systemc: sc_spawn can create static or dynamic processes. X-Git-Tag: v19.0.0.0~1690 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e1cf6b3e4724850e2ed2ff140efd5f42ed29d212;p=gem5.git systemc: sc_spawn can create static or dynamic processes. Their status depends on when sc_spawn is run. Change-Id: I826adf9d5c905687e705642130ca5ad725ce92af Reviewed-on: https://gem5-review.googlesource.com/c/12441 Reviewed-by: Gabe Black Maintainer: Gabe Black --- diff --git a/src/systemc/core/sc_spawn.cc b/src/systemc/core/sc_spawn.cc index ecb0bbc3f..054feb8da 100644 --- a/src/systemc/core/sc_spawn.cc +++ b/src/systemc/core/sc_spawn.cc @@ -31,6 +31,7 @@ #include "systemc/core/process.hh" #include "systemc/core/process_types.hh" #include "systemc/core/scheduler.hh" +#include "systemc/ext/core/sc_main.hh" #include "systemc/ext/core/sc_module.hh" #include "systemc/ext/core/sc_spawn.hh" @@ -59,11 +60,15 @@ spawnWork(ProcessFuncWrapper *func, const char *name, name = ::sc_core::sc_gen_unique_name("thread_p"); } + bool dynamic = + (::sc_core::sc_get_status() > + ::sc_core::SC_BEFORE_END_OF_ELABORATION); + Process *proc; if (method) - proc = new Method(name, func, true); + proc = new Method(name, func, dynamic); else - proc = new Thread(name, func, true); + proc = new Thread(name, func, dynamic); if (opts) { for (auto e: opts->_events)