summaryrefslogtreecommitdiff
path: root/src/mem/cache/miss
diff options
context:
space:
mode:
Diffstat (limited to 'src/mem/cache/miss')
-rw-r--r--src/mem/cache/miss/blocking_buffer.hh2
-rw-r--r--src/mem/cache/miss/miss_queue.hh2
-rw-r--r--src/mem/cache/miss/mshr_queue.hh2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/mem/cache/miss/blocking_buffer.hh b/src/mem/cache/miss/blocking_buffer.hh
index 08814b43e..39a06a377 100644
--- a/src/mem/cache/miss/blocking_buffer.hh
+++ b/src/mem/cache/miss/blocking_buffer.hh
@@ -166,7 +166,7 @@ public:
* has been sent to the bus, this function removes all of its targets.
* @param req->getThreadNum()ber The thread number of the requests to squash.
*/
- void squash(int req->getThreadNum()ber);
+ void squash(int threadNum);
/**
* Return the current number of outstanding misses.
diff --git a/src/mem/cache/miss/miss_queue.hh b/src/mem/cache/miss/miss_queue.hh
index d45982108..b88b7038c 100644
--- a/src/mem/cache/miss/miss_queue.hh
+++ b/src/mem/cache/miss/miss_queue.hh
@@ -270,7 +270,7 @@ class MissQueue
* has been sent to the bus, this function removes all of its targets.
* @param req->getThreadNum()ber The thread number of the requests to squash.
*/
- void squash(int req->getThreadNum()ber);
+ void squash(int threadNum);
/**
* Return the current number of outstanding misses.
diff --git a/src/mem/cache/miss/mshr_queue.hh b/src/mem/cache/miss/mshr_queue.hh
index 563368d29..a67f1b9a6 100644
--- a/src/mem/cache/miss/mshr_queue.hh
+++ b/src/mem/cache/miss/mshr_queue.hh
@@ -192,7 +192,7 @@ class MSHRQueue {
* is in service, just squashes the targets.
* @param req->getThreadNum()ber The thread to squash.
*/
- void squash(int req->getThreadNum()ber);
+ void squash(int threadNum);
/**
* Returns true if the pending list is not empty.