1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-31 16:57:10 +00:00

- Unbreak UP. mp_maxid is not defined on uni-processor machines, although

I believe it and the other MP variables should be.  For now, just define it
   here and wait for jhb to clean it up later.

Approved by:	re (rwatson)
This commit is contained in:
Jeff Roberson 2003-11-30 22:18:14 +00:00
parent a6c6a93c89
commit e30b97c5f9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=123073

View File

@ -126,6 +126,14 @@ static int uma_boot_free = 0;
/* Is the VM done starting up? */
static int booted = 0;
/*
* Rather than #ifdef SMP all over, just give us a bogus definition for
* this on UP.
*/
#ifndef SMP
static int mp_maxid = 1;
#endif
/*
* This is the handle used to schedule events that need to happen
* outside of the allocation fast path.