diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2022-09-25 14:48:42 +0000 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2022-09-25 14:48:42 +0000 |
commit | 6fb883b02c6fca762dcbe31450c868e4b854952c (patch) | |
tree | 1749dbbe1ac1a00635fa9e508fa16d0829ba2e9d /sys/src/9/port/proc.c | |
parent | 6abe569ec8f47ba14c3dcd5d5214e7b7a020bf7a (diff) |
9/port: revert timer wheel change, breaks pi4 boot, needs more time investigating
Diffstat (limited to 'sys/src/9/port/proc.c')
-rw-r--r-- | sys/src/9/port/proc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/9/port/proc.c b/sys/src/9/port/proc.c index 77e212402..3cf0cea9d 100644 --- a/sys/src/9/port/proc.c +++ b/sys/src/9/port/proc.c @@ -1203,7 +1203,7 @@ pexit(char *exitstr, int freemem) void (*pt)(Proc*, int, vlong); up->fpstate &= ~FPillegal; - procalarm(0); + up->alarm = 0; timerdel(up); pt = proctrace; if(pt != nil) |