diff options
| author | Steve Passe <fsmp@FreeBSD.org> | 1997-08-18 05:34:01 +0000 |
|---|---|---|
| committer | Steve Passe <fsmp@FreeBSD.org> | 1997-08-18 05:34:01 +0000 |
| commit | 75d23f5f871352603483fd977bf8fa7f5e5f7002 (patch) | |
| tree | df2076b16c80f908dae5e2f63c7f68b6b2355632 /sys | |
| parent | 92aa56df40f02f1d1bddcddd2f624b1b43db538d (diff) | |
Notes
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/i386/include/param.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/i386/include/param.h b/sys/i386/include/param.h index 4a7d19e7786a..54b3b262680e 100644 --- a/sys/i386/include/param.h +++ b/sys/i386/include/param.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)param.h 5.8 (Berkeley) 6/28/91 - * $Id: param.h,v 1.32 1997/08/07 05:15:52 dyson Exp $ + * $Id: param.h,v 1.33 1997/08/09 00:03:16 dyson Exp $ */ #ifndef _MACHINE_PARAM_H_ @@ -45,7 +45,11 @@ */ #define MACHINE "i386" +#ifdef SMP +#define NCPUS 2 +#else #define NCPUS 1 +#endif #define MID_MACHINE MID_I386 /* |
