aboutsummaryrefslogtreecommitdiff
path: root/src/gpgpu-sim/dram.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gpgpu-sim/dram.h')
-rw-r--r--src/gpgpu-sim/dram.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gpgpu-sim/dram.h b/src/gpgpu-sim/dram.h
index ee7f7a7..5428533 100644
--- a/src/gpgpu-sim/dram.h
+++ b/src/gpgpu-sim/dram.h
@@ -81,9 +81,10 @@
#define BANK_IDLE 'I'
#define BANK_ACTIVE 'A'
-struct dram_req_t
-{
+class dram_req_t {
+public:
dram_req_t( class mem_fetch *data );
+
unsigned int row;
unsigned int col;
unsigned int bk;
@@ -96,7 +97,6 @@ struct dram_req_t
unsigned long long int addr;
unsigned int insertion_time;
class mem_fetch * data;
- int cache_hits_waiting;
};
struct bank_t