systemc: Fill out sc_process_handle and create Process classes.
authorGabe Black <gabeblack@google.com>
Fri, 29 Jun 2018 23:46:52 +0000 (16:46 -0700)
committerGabe Black <gabeblack@google.com>
Wed, 5 Sep 2018 06:02:51 +0000 (06:02 +0000)
commit4bd389c9d0370d67464c2a508381abe326de3bdf
tree57fb22c26e1df3c0ebe49d406b89f6940217baa4
parentaaf0c47c972d3811314db93f0fe1ababf4c408f1
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 <gabeblack@google.com>
Maintainer: Gabe Black <gabeblack@google.com>
src/systemc/core/SConscript
src/systemc/core/object.cc
src/systemc/core/process.cc [new file with mode: 0644]
src/systemc/core/process.hh [new file with mode: 0644]
src/systemc/core/sc_module.cc
src/systemc/core/sc_process_handle.cc
src/systemc/core/sc_sensitive.cc
src/systemc/ext/core/sc_module.hh
src/systemc/ext/core/sc_process_handle.hh
src/systemc/ext/core/sc_sensitive.hh