gem5
v20.0.0.3
|
#include <callback.hh>
Public Member Functions | |
~CallbackQueue () | |
std::string | name () const |
void | add (Callback *callback) |
Add a callback to the end of the queue. More... | |
template<class T , void(T::*)() F> | |
void | add (T *obj) |
template<class T , void(T::*)() F> | |
void | add (T &obj) |
bool | empty () const |
Find out if there are any callbacks in the queue. More... | |
void | process () |
process all callbacks More... | |
void | clear () |
clear the callback queue More... | |
Protected Types | |
typedef std::list< Callback * > | queue |
Simple typedef for the data structure that stores all of the callbacks. More... | |
Protected Attributes | |
queue | callbacks |
List of all callbacks. More... | |
Definition at line 82 of file callback.hh.
|
protected |
Simple typedef for the data structure that stores all of the callbacks.
Definition at line 89 of file callback.hh.
CallbackQueue::~CallbackQueue | ( | ) |
Definition at line 31 of file callback.cc.
|
inline |
Add a callback to the end of the queue.
callback | the callback to be added to the queue |
Definition at line 105 of file callback.hh.
Referenced by Stats::registerDumpCallback(), registerExitCallback(), Stats::registerResetCallback(), and TEST().
|
inline |
Definition at line 112 of file callback.hh.
|
inline |
Definition at line 119 of file callback.hh.
|
inline |
clear the callback queue
Definition at line 148 of file callback.hh.
Referenced by doExitCleanup(), and TEST().
|
inline |
Find out if there are any callbacks in the queue.
Definition at line 127 of file callback.hh.
Referenced by TEST().
|
inline |
Definition at line 98 of file callback.hh.
Referenced by TEST().
|
inline |
process all callbacks
Definition at line 133 of file callback.hh.
References ArmISA::i.
Referenced by doExitCleanup(), Stats::processDumpQueue(), Stats::processResetQueue(), and TEST().
|
protected |
List of all callbacks.
To be called in fifo order.
Definition at line 94 of file callback.hh.
Referenced by ~CallbackQueue().