gem5
v19.0.0.0
|
Public Member Functions | |
SwitchingFiber (const char *name, std::initializer_list< Fiber *> l) | |
void | checkExpected () |
void | main () |
This method is called when this fiber is first run. More... | |
![]() | |
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... | |
Public Attributes | |
const char * | name |
std::vector< Fiber * > | next |
Additional Inherited Members | |
![]() | |
static Fiber * | currentFiber () |
Get a pointer to the current running Fiber. More... | |
static Fiber * | primaryFiber () |
Get a pointer to the primary Fiber. More... | |
![]() | |
static const size_t | DefaultStackSize = 0x50000 |
![]() | |
void | setStarted () |
Definition at line 74 of file fiber.test.cc.
SwitchingFiber::SwitchingFiber | ( | const char * | name, |
std::initializer_list< Fiber *> | l | ||
) |
Definition at line 101 of file fiber.test.cc.
void SwitchingFiber::checkExpected | ( | ) |
|
virtual |
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 115 of file fiber.test.cc.
References checkExpected(), ArmISA::n, and next.
const char* SwitchingFiber::name |
Definition at line 77 of file fiber.test.cc.
Referenced by checkExpected().
std::vector<Fiber *> SwitchingFiber::next |
Definition at line 78 of file fiber.test.cc.
Referenced by main().