65,68d64
< struct WaitRec
< {
< Addr waitChan;
< ThreadContext *waitingContext;
70,74d65
< WaitRec(Addr chan, ThreadContext *ctx)
< : waitChan(chan), waitingContext(ctx)
< { }
< };
<
209,211d199
< // list of all blocked contexts
< std::list<WaitRec> waitList;
<