From 4bd389c9d0370d67464c2a508381abe326de3bdf Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Fri, 29 Jun 2018 16:46:52 -0700 Subject: systemc: Fill out sc_process_handle and create Process classes. The sc_process_handle class now primarily delegates to a Process object it points at. The Process object does book keeping as far as its internal state, but doesn't yet have a way to run its target function or to schedule itself or inject exceptions into its context of execution. Change-Id: I98389778abe29aa26e3e3a91bf02e6721acc8a9c Reviewed-on: https://gem5-review.googlesource.com/11613 Reviewed-by: Gabe Black Maintainer: Gabe Black --- src/systemc/core/SConscript | 1 + 1 file changed, 1 insertion(+) (limited to 'src/systemc/core/SConscript') diff --git a/src/systemc/core/SConscript b/src/systemc/core/SConscript index a07c02683..f4d65060f 100644 --- a/src/systemc/core/SConscript +++ b/src/systemc/core/SConscript @@ -33,6 +33,7 @@ if env['USE_SYSTEMC']: Source('kernel.cc') Source('module.cc') Source('object.cc') + Source('process.cc') Source('sc_attr.cc') Source('sc_event.cc') -- cgit v1.2.3