diff options
author | Steve Murphree <smurph@cvs.openbsd.org> | 2001-01-13 05:19:02 +0000 |
---|---|---|
committer | Steve Murphree <smurph@cvs.openbsd.org> | 2001-01-13 05:19:02 +0000 |
commit | b2fc93362574ae97a3d3d367a3f18f9df09ebdec (patch) | |
tree | e3ebfa043bcdf243dc7894f0f6187d022dca0628 /sys/arch/mvme88k/include/vmparam.h | |
parent | 2c2cdb496b2db4e6759169e9d396fbb519037c56 (diff) |
Booting kernel with MACHINE_NEW_NONCONTIG. UVM code added but not working.
New stand config. Lots of header fixes. Can now cross-compile i386->m88k.
Diffstat (limited to 'sys/arch/mvme88k/include/vmparam.h')
-rw-r--r-- | sys/arch/mvme88k/include/vmparam.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/mvme88k/include/vmparam.h b/sys/arch/mvme88k/include/vmparam.h index 1e10d3be943..baa95477c0d 100644 --- a/sys/arch/mvme88k/include/vmparam.h +++ b/sys/arch/mvme88k/include/vmparam.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vmparam.h,v 1.7 2001/01/12 07:29:27 smurph Exp $ */ +/* $OpenBSD: vmparam.h,v 1.8 2001/01/13 05:18:59 smurph Exp $ */ /* * Mach Operating System * Copyright (c) 1992 Carnegie Mellon University @@ -201,6 +201,7 @@ #define VM_NFREELIST 1 #define VM_FREELIST_DEFAULT 0 +#ifndef ASSEMBLER /* * pmap-specific data stored in the vm_physmem[] array. */ @@ -209,6 +210,8 @@ struct pmap_physseg { char *attrs; /* page modify list for this seg */ struct simplelock *plock; /* page lock for this seg */ }; +#endif /* ASSEMBLER */ + #endif /* MACHINE_NEW_NONCONTIG */ |