From e3875215270220e5142a93848f74ccde9d61b244 Mon Sep 17 00:00:00 2001 From: Brandon Potter Date: Wed, 9 Nov 2016 14:27:40 -0600 Subject: syscall_emul: [patch 4/22] remove redundant M5_pid field from process --- src/arch/alpha/process.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/arch/alpha/process.cc') diff --git a/src/arch/alpha/process.cc b/src/arch/alpha/process.cc index 4e9f1e9dd..669f7da80 100644 --- a/src/arch/alpha/process.cc +++ b/src/arch/alpha/process.cc @@ -179,7 +179,7 @@ void AlphaLiveProcess::setupASNReg() { ThreadContext *tc = system->getThreadContext(contextIds[0]); - tc->setMiscRegNoEffect(IPR_DTB_ASN, M5_pid << 57); + tc->setMiscRegNoEffect(IPR_DTB_ASN, _pid << 57); } @@ -187,7 +187,7 @@ void AlphaLiveProcess::loadState(CheckpointIn &cp) { LiveProcess::loadState(cp); - // need to set up ASN after unserialization since M5_pid value may + // need to set up ASN after unserialization since _pid value may // come from checkpoint setupASNReg(); } -- cgit v1.2.3