Deleted Added
sdiff udiff text old ( 4046:ef34b290091e ) new ( 4073:62f6ab072e2e )
full compact
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;

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

77
78// See async.h.
79volatile bool async_event = false;
80volatile bool async_dump = false;
81volatile bool async_dumpreset = false;
82volatile bool async_exit = false;
83volatile bool async_io = false;
84volatile bool async_alarm = false;
85
86/// Stats signal handler.
87void
88dumpStatsHandler(int sigtype)
89{
90 async_event = true;
91 async_dump = true;
92}

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

366 exitSimLoop("user interrupt received");
367 }
368
369 if (async_io || async_alarm) {
370 async_io = false;
371 async_alarm = false;
372 pollQueue.service();
373 }
374 }
375 }
376
377 // not reached... only exit is return on SimLoopExitEvent
378}
379
380Event *
381createCountedDrain()

--- 86 unchanged lines hidden ---