diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2003-05-11 22:09:32 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2003-05-11 22:09:32 +0000 |
commit | 351e62b384d28ecccbe887b61a08c11afb54c544 (patch) | |
tree | ff6a36971576964d855fe0b20fcb7354f5963a9d /sys | |
parent | 99e89068a9b469235edb8a8c518478211864ce9f (diff) |
nuke another common: want_resched
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/sparc64/sparc64/cpu.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/sparc64/sparc64/cpu.c b/sys/arch/sparc64/sparc64/cpu.c index 39899976ecf..cbcc926e9eb 100644 --- a/sys/arch/sparc64/sparc64/cpu.c +++ b/sys/arch/sparc64/sparc64/cpu.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.c,v 1.12 2003/05/07 22:33:25 deraadt Exp $ */ +/* $OpenBSD: cpu.c,v 1.13 2003/05/11 22:09:31 jason Exp $ */ /* $NetBSD: cpu.c,v 1.13 2001/05/26 21:27:15 chs Exp $ */ /* @@ -82,7 +82,8 @@ char cpu_model[100]; struct proc *fpproc; int foundfpu; -int want_ast, want_resched; +int want_ast; +extern int want_resched; /* The CPU configuration driver. */ static void cpu_attach(struct device *, struct device *, void *); |