diff -r 62467854ead1 -r 834818d4af69 src/sim/sim_events.hh --- a/src/sim/sim_events.hh Tue Jan 04 14:41:59 2011 -0800 +++ b/src/sim/sim_events.hh Tue Jan 04 14:42:09 2011 -0800 @@ -90,19 +90,5 @@ virtual const char *description() const; }; -// -// Event to check swap usage -// -class CheckSwapEvent : public Event -{ - private: - int interval; - - public: - CheckSwapEvent(int ival); - void process(); // process event - - virtual const char *description() const; -}; #endif // __SIM_SIM_EVENTS_HH__ diff -r 62467854ead1 -r 834818d4af69 src/sim/sim_events.cc --- a/src/sim/sim_events.cc Tue Jan 04 14:41:59 2011 -0800 +++ b/src/sim/sim_events.cc Tue Jan 04 14:42:09 2011 -0800 @@ -123,36 +123,3 @@ { return "counted exit"; } - -CheckSwapEvent::CheckSwapEvent(int ival) - : interval(ival) -{ - mainEventQueue.schedule(this, curTick + interval); -} - -void -CheckSwapEvent::process() -{ - /* Check the amount of free swap space */ - long swap; - - /* returns free swap in KBytes */ - swap = procInfo("/proc/meminfo", "SwapFree:"); - - if (swap < 1000) - ccprintf(cerr, "\a\a\aWarning! Swap space is low (%d)\n", swap); - - if (swap < 100) { - cerr << "\a\aAborting Simulation! Inadequate swap space!\n\n"; - exitSimLoop("Lack of swap space"); - } - - assert(getFlags(IsMainQueue)); - mainEventQueue.schedule(this, curTick + interval); -} - -const char * -CheckSwapEvent::description() const -{ - return "check swap"; -}