# Node ID 770add1a79a82717cfacc3ebe00ce8422520abe9 # Parent 5e2d3ce3a08cd3f4f34781a71bf6b398a36d3f49 diff --git a/src/sim/process.hh b/src/sim/process.hh --- a/src/sim/process.hh +++ b/src/sim/process.hh @@ -62,15 +62,6 @@ class Process : public SimObject { public: - struct WaitRec - { - Addr waitChan; - ThreadContext *waitingContext; - - WaitRec(Addr chan, ThreadContext *ctx) - : waitChan(chan), waitingContext(ctx) - { } - }; struct MemState { @@ -206,9 +197,6 @@ void clone(ThreadContext *old_tc, ThreadContext *new_tc, Process *new_p, TheISA::IntReg flags); - // list of all blocked contexts - std::list waitList; - // thread contexts associated with this process std::vector contextIds;