diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2001-05-16 17:40:42 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2001-05-16 17:40:42 +0000 |
commit | 721e2f80a69d861a4d47cc267f1f6fb73b21f234 (patch) | |
tree | 2924004b1495079bcc8a74d0b8e697af1144ab05 /sys | |
parent | 509bc5b4ef04d8643f9019e9ba17ab59a6fa19b5 (diff) |
Use PMAP_NEW if UVM is defined.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/hp300/include/param.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/arch/hp300/include/param.h b/sys/arch/hp300/include/param.h index ec0e36c04f0..57e89bea0d0 100644 --- a/sys/arch/hp300/include/param.h +++ b/sys/arch/hp300/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.13 2001/05/13 02:37:29 millert Exp $ */ +/* $OpenBSD: param.h,v 1.14 2001/05/16 17:40:41 millert Exp $ */ /* $NetBSD: param.h,v 1.35 1997/07/10 08:22:38 veego Exp $ */ /* @@ -105,4 +105,8 @@ void _delay __P((u_int)); ((unsigned)(v) & ~HPMMMASK) #endif +#ifdef UVM +#define PMAP_NEW +#endif + #endif /* !_MACHINE_PARAM_H_ */ |