summaryrefslogtreecommitdiff
path: root/src/mem/ruby/system
diff options
context:
space:
mode:
authorDerek Hower <drh5@cs.wisc.edu>2009-09-15 20:49:54 -0500
committerDerek Hower <drh5@cs.wisc.edu>2009-09-15 20:49:54 -0500
commit144459032a57c50df1ef3059d96f303da7bcff36 (patch)
tree37abe6640b4b7a66c5792c7e55a64ea91becced1 /src/mem/ruby/system
parent20da0f788cdc8bc454bc12dde113d346c93329ba (diff)
downloadgem5-144459032a57c50df1ef3059d96f303da7bcff36.tar.xz
removed isReady from the library interface
Diffstat (limited to 'src/mem/ruby/system')
-rw-r--r--src/mem/ruby/system/RubyPort.hh2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mem/ruby/system/RubyPort.hh b/src/mem/ruby/system/RubyPort.hh
index cc7fd8d1f..2f391070f 100644
--- a/src/mem/ruby/system/RubyPort.hh
+++ b/src/mem/ruby/system/RubyPort.hh
@@ -21,8 +21,6 @@ public:
virtual int64_t makeRequest(const RubyRequest & request) = 0;
- virtual bool isReady(const RubyRequest & request, bool dont_set = false) = 0;
-
void registerHitCallback(void (*hit_callback)(int64_t request_id)) {
assert(m_hit_callback == NULL); // can't assign hit_callback twice
m_hit_callback = hit_callback;