sim_events.cc (10905:a6ca6831e775) sim_events.cc (10906:3ab1d7ed6545)
1/*
2 * Copyright (c) 2013 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

132{
133 Event::unserialize(cp);
134
135 UNSERIALIZE_SCALAR(cause);
136 UNSERIALIZE_SCALAR(code);
137 UNSERIALIZE_SCALAR(repeat);
138}
139
1/*
2 * Copyright (c) 2013 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

132{
133 Event::unserialize(cp);
134
135 UNSERIALIZE_SCALAR(cause);
136 UNSERIALIZE_SCALAR(code);
137 UNSERIALIZE_SCALAR(repeat);
138}
139
140void
141LocalSimLoopExitEvent::unserializeEvent(CheckpointIn &cp, EventQueue *eventq)
142{
143 Event::unserializeEvent(cp, eventq);
144
145 UNSERIALIZE_SCALAR(cause);
146 UNSERIALIZE_SCALAR(code);
147 UNSERIALIZE_SCALAR(repeat);
148}
149
150Serializable *
151LocalSimLoopExitEvent::createForUnserialize(CheckpointIn &cp,
152 const string &section)
153{
154 return new LocalSimLoopExitEvent();
155}
156
157REGISTER_SERIALIZEABLE("LocalSimLoopExitEvent", LocalSimLoopExitEvent)

--- 29 unchanged lines hidden ---
140Serializable *
141LocalSimLoopExitEvent::createForUnserialize(CheckpointIn &cp,
142 const string &section)
143{
144 return new LocalSimLoopExitEvent();
145}
146
147REGISTER_SERIALIZEABLE("LocalSimLoopExitEvent", LocalSimLoopExitEvent)

--- 29 unchanged lines hidden ---