|
gem5
v19.0.0.0
|
Public Member Functions | |
| Context (Thread *thread, size_t size) | |
Public Member Functions inherited from Fiber | |
| Fiber (size_t stack_size=DefaultStackSize) | |
| stack_size is the size of the stack available to this fiber. More... | |
| Fiber (Fiber *link, size_t stack_size=DefaultStackSize) | |
| virtual | ~Fiber () |
| void | run () |
| Start executing the fiber represented by this object. More... | |
| bool | finished () const |
| Returns whether the "main" function of this fiber has finished. More... | |
| bool | started () const |
| Returns whether the "main" function of this fiber has started. More... | |
Private Member Functions | |
| void | main () override |
| This method is called when this fiber is first run. More... | |
Private Attributes | |
| Thread * | thread |
Additional Inherited Members | |
Static Public Member Functions inherited from Fiber | |
| static Fiber * | currentFiber () |
| Get a pointer to the current running Fiber. More... | |
| static Fiber * | primaryFiber () |
| Get a pointer to the primary Fiber. More... | |
Static Public Attributes inherited from Fiber | |
| static const size_t | DefaultStackSize = 0x50000 |
Protected Member Functions inherited from Fiber | |
| void | setStarted () |
Definition at line 81 of file process_types.hh.
|
inline |
Definition at line 84 of file process_types.hh.
|
inlineoverrideprivatevirtual |
This method is called when this fiber is first run.
Override it to give your fiber something to do. When main returns, the fiber will mark itself as finished and switch to its link fiber.
Implements Fiber.
Definition at line 90 of file process_types.hh.
References sc_gem5::Process::_needsStart, sc_gem5::Process::run(), sc_gem5::scheduler, sc_gem5::Process::terminate(), sc_gem5::Scheduler::throwUp(), and sc_gem5::Scheduler::yield().
|
private |
Definition at line 87 of file process_types.hh.