Remove redundant operation about user thread stack

This commit is contained in:
zflcs 2024-11-26 11:16:34 +08:00
parent 29db2e2d9f
commit d6b54eea7c

View File

@ -199,7 +199,7 @@ impl Runtime {
available.ctx.x1 = guard as u64; //ctx.x1 is old return address available.ctx.x1 = guard as u64; //ctx.x1 is old return address
available.ctx.nx1 = f as u64; //ctx.nx2 is new return address available.ctx.nx1 = f as u64; //ctx.nx2 is new return address
available.ctx.x2 = s_ptr.offset(-32) as u64; //cxt.x2 is sp available.ctx.x2 = s_ptr as u64; //cxt.x2 is sp
} }
available.state = State::Ready; available.state = State::Ready;
} }