49c49
< #include "cpu/exec_context.hh"
---
> #include "cpu/thread_context.hh"
178c178
< LinuxAlphaSystem::setDelayLoop(ExecContext *xc)
---
> LinuxAlphaSystem::setDelayLoop(ThreadContext *tc)
182c182
< Tick cpuFreq = xc->getCpuPtr()->frequency();
---
> Tick cpuFreq = tc->getCpuPtr()->frequency();
184c184
< xc->getVirtPort(xc)->write(addr,
---
> tc->getVirtPort(tc)->write(addr,
191c191
< LinuxAlphaSystem::SkipDelayLoopEvent::process(ExecContext *xc)
---
> LinuxAlphaSystem::SkipDelayLoopEvent::process(ThreadContext *tc)
193c193
< SkipFuncEvent::process(xc);
---
> SkipFuncEvent::process(tc);
195c195
< ((LinuxAlphaSystem *)xc->getSystemPtr())->setDelayLoop(xc);
---
> ((LinuxAlphaSystem *)tc->getSystemPtr())->setDelayLoop(tc);
199c199
< LinuxAlphaSystem::PrintThreadInfo::process(ExecContext *xc)
---
> LinuxAlphaSystem::PrintThreadInfo::process(ThreadContext *tc)
201c201
< Linux::ThreadInfo ti(xc);
---
> Linux::ThreadInfo ti(tc);