OSDN Git Service

2006-03-27 Frank Ch. Eigler <fche@elastic.org>
authorfche <fche>
Mon, 27 Mar 2006 20:30:06 +0000 (20:30 +0000)
committerfche <fche>
Mon, 27 Mar 2006 20:30:06 +0000 (20:30 +0000)
* sidcpuutil.h (basic_cpu::{read,write}_watchpoint_memory): Remove
extra class qualification.
* sidattrutil.h (configurable_component::nothing): Ditto.

sid/include/ChangeLog
sid/include/sidattrutil.h
sid/include/sidcpuutil.h

index a88b894..0a0d05f 100644 (file)
@@ -1,3 +1,9 @@
+2006-03-27  Frank Ch. Eigler  <fche@elastic.org>
+
+       * sidcpuutil.h (basic_cpu::{read,write}_watchpoint_memory): Remove
+       extra class qualification.
+       * sidattrutil.h (configurable_component::nothing): Ditto.
+
 2005-11-14  Dave Brolley  <brolley@redhat.com>
 
        * sidcpuutil.h (basic_cpu::pin_factory): Parse, recognize and add
index 266f81e..4f2f56d 100644 (file)
@@ -1035,7 +1035,7 @@ make_attribute (const sid::any_int<IntType,IsBig>& value)
 
     // Dynamic reconfiguration support
   private:
-    std::string configurable_component::nothing() { return ""; }
+    std::string nothing() { return ""; }
   protected:
     virtual component::status
     dynamic_config(const std::string& spec)
index d65b50a..ed0b1ea 100644 (file)
@@ -775,7 +775,7 @@ namespace sidutil
     virtual void record_data_memory_read_latency (sid::bus::status s) { total_latency += s.latency; }
     virtual void record_data_memory_write_latency (sid::bus::status s) { total_latency += s.latency; }
 
-    virtual std::string basic_cpu::read_watchpoint_memory (std::pair<sid::host_int_4,sid::host_int_4> addr_and_length)
+    virtual std::string read_watchpoint_memory (std::pair<sid::host_int_4,sid::host_int_4> addr_and_length)
       {
        // Extract the address and length from the argument.
        sid::host_int_4 address = addr_and_length.first;
@@ -816,7 +816,7 @@ namespace sidutil
        return "";
       }
 
-    virtual sid::component::status basic_cpu::write_watchpoint_memory (std::pair<sid::host_int_4,sid::host_int_4> addr_and_length, const std::string &value)
+    virtual sid::component::status write_watchpoint_memory (std::pair<sid::host_int_4,sid::host_int_4> addr_and_length, const std::string &value)
       {
        return sid::component::bad_value;
       }