diff options
author | 2004-08-07 18:57:44 +0000 | |
---|---|---|
committer | 2004-08-07 18:57:44 +0000 | |
commit | 6d3904b9ba9a91b8696427d08fee86c3a1753336 (patch) | |
tree | 37f425cca28b9dcfe0962ccc3f1d2c6550c75054 | |
parent | update policy for libc changes (getrlimit) (diff) | |
download | wireguard-openbsd-6d3904b9ba9a91b8696427d08fee86c3a1753336.tar.xz wireguard-openbsd-6d3904b9ba9a91b8696427d08fee86c3a1753336.zip |
Need pmap_unuse_final() too; Martin Reindl.
-rw-r--r-- | sys/arch/m68k/include/pmap_motorola.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/m68k/include/pmap_motorola.h b/sys/arch/m68k/include/pmap_motorola.h index b6b5c1d7ce7..3b8fad67463 100644 --- a/sys/arch/m68k/include/pmap_motorola.h +++ b/sys/arch/m68k/include/pmap_motorola.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap_motorola.h,v 1.11 2004/05/20 09:20:42 kettenis Exp $ */ +/* $OpenBSD: pmap_motorola.h,v 1.12 2004/08/07 18:57:44 miod Exp $ */ /* * Copyright (c) 1987 Carnegie-Mellon University @@ -128,6 +128,7 @@ extern struct pv_entry *pv_table; /* array of entries, one per page */ #define pmap_copy(dp,sp,d,l,s) do { /* nothing */ } while (0) #define pmap_update(pmap) do { /* nothing (yet) */ } while (0) +#define pmap_unuse_final(p) do { /* nothing */ } while (0) extern pt_entry_t *Sysmap; extern char *vmmap; /* map for mem, dumps, etc. */ |