diff options
author | glenda <glenda@9front.local> | 2025-05-14 01:33:55 +0000 |
---|---|---|
committer | glenda <glenda@9front.local> | 2025-05-14 01:33:55 +0000 |
commit | a7081490dbeda19788e6374a080ee38606aa3cd3 (patch) | |
tree | 8c440e3611573ee60322e7e84e5204e3e326028a /sys/src/9/sgi/main.c | |
parent | 635cb9e7425577dae44eb415ad42e8d3892850b5 (diff) |
kernel: get rid of Proc.kstack
The kernel stack is now above the Proc structure,
so the explicit kstack pointer can be eliminated.
Diffstat (limited to 'sys/src/9/sgi/main.c')
-rw-r--r-- | sys/src/9/sgi/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/9/sgi/main.c b/sys/src/9/sgi/main.c index 31d120068..4e0aa75ba 100644 --- a/sys/src/9/sgi/main.c +++ b/sys/src/9/sgi/main.c @@ -321,7 +321,7 @@ procsave(Proc *p) } void -procrestore(Proc *p) +procrestore(Proc *) { } |