diff options
Diffstat (limited to 'sys/ia64/include/param.h')
| -rw-r--r-- | sys/ia64/include/param.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/ia64/include/param.h b/sys/ia64/include/param.h index db2271fbcfea..62e3235c80b3 100644 --- a/sys/ia64/include/param.h +++ b/sys/ia64/include/param.h @@ -91,7 +91,11 @@ #define OBJFORMAT_NAMES "elf" #define OBJFORMAT_DEFAULT "elf" -#define NCPUS 1 +#ifdef SMP +#define MAXCPU 16 +#else +#define MAXCPU 1 +#endif /* * Round p (pointer or byte index) up to a correctly-aligned value for all |
