diff options
Diffstat (limited to 'kern')
-rw-r--r-- | kern/tru64/tru64_system.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/kern/tru64/tru64_system.cc b/kern/tru64/tru64_system.cc index 6fe5fb81b..99d99afd4 100644 --- a/kern/tru64/tru64_system.cc +++ b/kern/tru64/tru64_system.cc @@ -566,7 +566,9 @@ Tru64System::registerExecContext(ExecContext *xc) int xcIndex = System::registerExecContext(xc); if (xcIndex == 0) { - xc->activate(); + // activate with zero delay so that we start ticking right + // away on cycle 0 + xc->activate(0); } RemoteGDB *rgdb = new RemoteGDB(this, xc); |