diff options
Diffstat (limited to 'gui/worker.h')
-rw-r--r-- | gui/worker.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gui/worker.h b/gui/worker.h index b6332b0..acfffcf 100644 --- a/gui/worker.h +++ b/gui/worker.h @@ -23,15 +23,16 @@ class Worker : public QObject * The storage objects, stored smallest to largest. */ std::deque<Storage *> s; - /** - * The stage objects, starting with fetch. - */ IF *if_stage; ID *id_stage; EX *ex_stage; MM *mm_stage; WB *wb_stage; Controller *ct; + /** + * The size each progressive cache level increases by. + */ + unsigned int size_inc; public: explicit Worker(QObject *parent = nullptr); |