ruby: eliminate type uint64 and int64

These types are being replaced with uint64_t and int64_t.
This commit is contained in:
Nilay Vaish
2015-08-14 19:28:43 -05:00
parent 9648c05db1
commit a6f3f38f2c
26 changed files with 97 additions and 101 deletions

View File

@@ -109,9 +109,9 @@ class RubyDirectedTester : public MemObject
RubyDirectedTester(const RubyDirectedTester& obj);
RubyDirectedTester& operator=(const RubyDirectedTester& obj);
uint64 m_requests_completed;
uint64_t m_requests_completed;
std::vector<MasterPort*> ports;
uint64 m_requests_to_complete;
uint64_t m_requests_to_complete;
DirectedGenerator* generator;
};

View File

@@ -143,10 +143,10 @@ class RubyTester : public MemObject
std::vector<Cycles> m_last_progress_vector;
int m_num_cpus;
uint64 m_checks_completed;
uint64_t m_checks_completed;
std::vector<MasterPort*> writePorts;
std::vector<MasterPort*> readPorts;
uint64 m_checks_to_complete;
uint64_t m_checks_to_complete;
int m_deadlock_threshold;
int m_num_writers;
int m_num_readers;