From 29082ef5cec7640977907ea540659e895f8ca164 Mon Sep 17 00:00:00 2001 From: Brandon Potter Date: Thu, 8 Aug 2019 14:15:50 -0400 Subject: sim-se: remove unused parameter The init function which processes invoke on their page tables has a thread context pointer parameter. The parameter is not used by the code so remove it. Change-Id: Ic4766fbc105d81c1c9ee4b5c0f428497dff2ab30 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/19948 Reviewed-by: Jason Lowe-Power Maintainer: Jason Lowe-Power Tested-by: kokoro --- src/sim/process.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/sim') diff --git a/src/sim/process.cc b/src/sim/process.cc index 3a39dbe50..735933d01 100644 --- a/src/sim/process.cc +++ b/src/sim/process.cc @@ -282,7 +282,7 @@ Process::initState() // mark this context as active so it will start ticking. tc->activate(); - pTable->initState(tc); + pTable->initState(); } DrainState -- cgit v1.2.3