From ad0a541a9eec365738d60b39aeea402abe991632 Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Sat, 24 Feb 2001 18:41:17 +0000 Subject: [PATCH] Pass in process to mark ast on to aston(). --- sys/ia64/include/cpu.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/ia64/include/cpu.h b/sys/ia64/include/cpu.h index 5a5257a17684..0093614cfcf7 100644 --- a/sys/ia64/include/cpu.h +++ b/sys/ia64/include/cpu.h @@ -80,7 +80,7 @@ struct clockframe { #define need_proftick(p) do { \ mtx_lock_spin(&sched_lock); \ (p)->p_sflag |= PS_OWEUPC; \ - aston(); \ + aston((p)); \ mtx_unlock_spin(&sched_lock); \ } while (0)