diff options
Diffstat (limited to 'sys/arch/mvme68k/include')
-rw-r--r-- | sys/arch/mvme68k/include/cpu.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mvme68k/include/cpu.h b/sys/arch/mvme68k/include/cpu.h index 091cd1aec50..5f3aeb08da3 100644 --- a/sys/arch/mvme68k/include/cpu.h +++ b/sys/arch/mvme68k/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.17 2004/05/20 09:20:42 kettenis Exp $ */ +/* $OpenBSD: cpu.h,v 1.18 2004/06/13 21:49:18 niklas Exp $ */ /* * Copyright (c) 1995 Theo de Raadt @@ -127,7 +127,7 @@ struct clockframe { * or after the current trap/syscall if in system mode. */ extern int want_resched; -#define need_resched() { want_resched = 1; aston(); } +#define need_resched(ci) { want_resched = 1; aston(); } /* * Give a profiling tick to the current process when the user profiling |