Searched refs:_currentFiber (Results 1 - 1 of 1) sorted by relevance

/gem5/src/base/
H A Dfiber.cc73 Fiber *_currentFiber = &_primaryFiber; member in namespace:__anon17
115 panic_if(stack && _currentFiber == this, "Fiber stack is in use.");
136 panic_if(!_currentFiber, "No active Fiber object.");
137 swapcontext(&_currentFiber->ctx, &ctx);
152 int ret M5_VAR_USED = swapcontext(&ctx, &_currentFiber->ctx);
170 if (_currentFiber == this)
177 Fiber *prev = _currentFiber;
179 _currentFiber = next;
183 Fiber *Fiber::currentFiber() { return _currentFiber; }

Completed in 3 milliseconds