eventq.hh (4016:1d09f041eefa) eventq.hh (4075:cc018a738853)
1/*
2 * Copyright (c) 2000-2005 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;

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

164 /// CPU ticks must come after other associated CPU events
165 /// (such as writebacks).
166 CPU_Tick_Pri = 50,
167
168 /// Statistics events (dump, reset, etc.) come after
169 /// everything else, but before exit.
170 Stat_Event_Pri = 90,
171
1/*
2 * Copyright (c) 2000-2005 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;

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

164 /// CPU ticks must come after other associated CPU events
165 /// (such as writebacks).
166 CPU_Tick_Pri = 50,
167
168 /// Statistics events (dump, reset, etc.) come after
169 /// everything else, but before exit.
170 Stat_Event_Pri = 90,
171
172 /// Progress events come at the end.
173 Progress_Event_Pri = 95,
174
172 /// If we want to exit on this cycle, it's the very last thing
173 /// we do.
174 Sim_Exit_Pri = 100
175 };
176
177 /*
178 * Event constructor
179 * @param queue that the event gets scheduled on

--- 262 unchanged lines hidden ---
175 /// If we want to exit on this cycle, it's the very last thing
176 /// we do.
177 Sim_Exit_Pri = 100
178 };
179
180 /*
181 * Event constructor
182 * @param queue that the event gets scheduled on

--- 262 unchanged lines hidden ---