diff options
author | bd <bdunahu@operationnull.com> | 2025-04-19 04:16:00 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-04-19 04:16:00 -0400 |
commit | 24de6faf71c85e0281b32fb899fcbe4fe82380c4 (patch) | |
tree | f0a6dc277b3684f036c544ac66ca695c6eef46f9 /gui/worker.h | |
parent | c9b553e68dbd95a8faf5abf4f8e1362261bec99f (diff) |
Reinstate rest of worker.cc functions such that programs work again
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); |