Sequencer.cc (11168:f98eb2da15a4) Sequencer.cc (11266:452e10b868ea)
1/*
2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
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;

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

486 delete pkt->req;
487 delete pkt;
488 rs->m_cache_recorder->enqueueNextFetchRequest();
489 } else if (RubySystem::getCooldownEnabled()) {
490 delete pkt;
491 rs->m_cache_recorder->enqueueNextFlushRequest();
492 } else {
493 ruby_hit_callback(pkt);
1/*
2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
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;

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

486 delete pkt->req;
487 delete pkt;
488 rs->m_cache_recorder->enqueueNextFetchRequest();
489 } else if (RubySystem::getCooldownEnabled()) {
490 delete pkt;
491 rs->m_cache_recorder->enqueueNextFlushRequest();
492 } else {
493 ruby_hit_callback(pkt);
494 testDrainComplete();
494 }
495}
496
497bool
498Sequencer::empty() const
499{
500 return m_writeRequestTable.empty() && m_readRequestTable.empty();
501}

--- 254 unchanged lines hidden ---
495 }
496}
497
498bool
499Sequencer::empty() const
500{
501 return m_writeRequestTable.empty() && m_readRequestTable.empty();
502}

--- 254 unchanged lines hidden ---