ruby: removed dead functions from the sequencer

This commit is contained in:
Derek Hower 2009-05-11 10:38:46 -07:00
parent 29f82f265a
commit 0ccf8f35a5
2 changed files with 0 additions and 27 deletions

View file

@ -627,26 +627,6 @@ void Sequencer::hitCallback(const CacheMsg& request, DataBlock& data, GenericMac
} }
} }
void Sequencer::readConflictCallback(const Address& address) {
std::cout << __FILE__ << "(" << __LINE__ << "): Not implemented. " << std::endl;
}
void Sequencer::readConflictCallback(const Address& address, GenericMachineType respondingMach, int thread) {
std::cout << __FILE__ << "(" << __LINE__ << "): Not implemented. " << std::endl;
}
void Sequencer::writeConflictCallback(const Address& address) {
std::cout << __FILE__ << "(" << __LINE__ << "): Not implemented. " << std::endl;
}
void Sequencer::writeConflictCallback(const Address& address, GenericMachineType respondingMach, int thread) {
std::cout << __FILE__ << "(" << __LINE__ << "): Not implemented. " << std::endl;
}
void Sequencer::conflictCallback(const CacheMsg& request, GenericMachineType respondingMach, int thread) {
std::cout << __FILE__ << "(" << __LINE__ << "): Not implemented. " << std::endl;
}
void Sequencer::printDebug(){ void Sequencer::printDebug(){
//notify driver of debug //notify driver of debug
g_system_ptr->getDriver()->printDebug(); g_system_ptr->getDriver()->printDebug();

View file

@ -83,13 +83,6 @@ public:
CacheMsg & getReadRequest( const Address & addr, int thread ); CacheMsg & getReadRequest( const Address & addr, int thread );
CacheMsg & getWriteRequest( const Address & addr, int thread ); CacheMsg & getWriteRequest( const Address & addr, int thread );
// called by Ruby when transaction completes
void writeConflictCallback(const Address& address);
void readConflictCallback(const Address& address);
void writeConflictCallback(const Address& address, GenericMachineType respondingMach, int thread);
void readConflictCallback(const Address& address, GenericMachineType respondingMach, int thread);
void conflictCallback(const CacheMsg& request, GenericMachineType respondingMach, int thread);
void writeCallback(const Address& address, DataBlock& data); void writeCallback(const Address& address, DataBlock& data);
void readCallback(const Address& address, DataBlock& data); void readCallback(const Address& address, DataBlock& data);
void writeCallback(const Address& address); void writeCallback(const Address& address);