thread_state.cc (5497:89a6483d7047) thread_state.cc (5606:6da7a58b0bc8)
1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 91 unchanged lines hidden (view full) ---

100 UNSERIALIZE_SCALAR(inst);
101 UNSERIALIZE_SCALAR(microPC);
102 UNSERIALIZE_SCALAR(nextMicroPC);
103
104#if FULL_SYSTEM
105 Tick quiesceEndTick;
106 UNSERIALIZE_SCALAR(quiesceEndTick);
107 if (quiesceEndTick)
1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 91 unchanged lines hidden (view full) ---

100 UNSERIALIZE_SCALAR(inst);
101 UNSERIALIZE_SCALAR(microPC);
102 UNSERIALIZE_SCALAR(nextMicroPC);
103
104#if FULL_SYSTEM
105 Tick quiesceEndTick;
106 UNSERIALIZE_SCALAR(quiesceEndTick);
107 if (quiesceEndTick)
108 quiesceEvent->schedule(quiesceEndTick);
108 baseCpu->schedule(quiesceEvent, quiesceEndTick);
109 if (kernelStats)
110 kernelStats->unserialize(cp, section);
111#endif
112}
113
114#if FULL_SYSTEM
115void
116ThreadState::connectMemPorts(ThreadContext *tc)

--- 81 unchanged lines hidden ---
109 if (kernelStats)
110 kernelStats->unserialize(cp, section);
111#endif
112}
113
114#if FULL_SYSTEM
115void
116ThreadState::connectMemPorts(ThreadContext *tc)

--- 81 unchanged lines hidden ---