diff options
author | Derek Hower <drh5@cs.wisc.edu> | 2009-09-15 20:49:54 -0500 |
---|---|---|
committer | Derek Hower <drh5@cs.wisc.edu> | 2009-09-15 20:49:54 -0500 |
commit | 144459032a57c50df1ef3059d96f303da7bcff36 (patch) | |
tree | 37abe6640b4b7a66c5792c7e55a64ea91becced1 /src/mem/ruby/libruby.cc | |
parent | 20da0f788cdc8bc454bc12dde113d346c93329ba (diff) | |
download | gem5-144459032a57c50df1ef3059d96f303da7bcff36.tar.xz |
removed isReady from the library interface
Diffstat (limited to 'src/mem/ruby/libruby.cc')
-rw-r--r-- | src/mem/ruby/libruby.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mem/ruby/libruby.cc b/src/mem/ruby/libruby.cc index 71f7e383e..e4e302eba 100644 --- a/src/mem/ruby/libruby.cc +++ b/src/mem/ruby/libruby.cc @@ -133,10 +133,6 @@ void libruby_read_ram(uint64_t paddr, uint8_t* data, int len) RubySystem::getMemoryVector()->read(Address(paddr), data, len); } -bool libruby_isReady(RubyPortHandle p, struct RubyRequest request) { - return static_cast<RubyPort*>(p)->isReady(request, true); -} - int64_t libruby_issue_request(RubyPortHandle p, struct RubyRequest request) { return static_cast<RubyPort*>(p)->makeRequest(request); |