diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2004-01-20 14:35:55 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2004-01-20 14:35:55 +0000 |
commit | d8e696c02252fe27c4c139380a71f1f2a63a575e (patch) | |
tree | 167c0dcba0cc70c27d5544752cfe07e168636aa9 /sys/arch/mvme88k/include | |
parent | af5bc809252be419668c4758eaeb42a766d10c8d (diff) |
Use shifts and logical arithmetic, rather than multiplications and integer
arithmetic, when computing cmmu numbers.
Diffstat (limited to 'sys/arch/mvme88k/include')
-rw-r--r-- | sys/arch/mvme88k/include/cmmu.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/arch/mvme88k/include/cmmu.h b/sys/arch/mvme88k/include/cmmu.h index 98a33c7b44b..9b3ff2bfee6 100644 --- a/sys/arch/mvme88k/include/cmmu.h +++ b/sys/arch/mvme88k/include/cmmu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cmmu.h,v 1.17 2004/01/09 00:23:04 miod Exp $ */ +/* $OpenBSD: cmmu.h,v 1.18 2004/01/20 14:35:52 miod Exp $ */ /* * Mach Operating System * Copyright (c) 1993-1992 Carnegie Mellon University @@ -35,7 +35,6 @@ * Prototypes and stuff for cmmu.c. */ extern unsigned cpu_sets[MAX_CPUS]; -extern int cpu_cmmu_ratio; extern unsigned master_cpu; extern int max_cpus, max_cmmus; |