diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2023-04-13 15:23:24 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2023-04-13 15:23:24 +0000 |
commit | af3adb43eb6f0959769cc1a4ad5a4b3bc1062440 (patch) | |
tree | 1aadff315af3f281cbf408baad557087ff90afa2 /sys/arch/m88k | |
parent | 03c94cbf30ab393b7657fda3fa4ad82799b06c61 (diff) |
pmap_copy() has never, ever, been implemented in any of the platforms OpenBSD
ever ran on, and it's unlikely to ever be implemented, so remove it.
ok jsg@
Diffstat (limited to 'sys/arch/m88k')
-rw-r--r-- | sys/arch/m88k/include/pmap.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/arch/m88k/include/pmap.h b/sys/arch/m88k/include/pmap.h index 216f11c8934..746ed8ec8dc 100644 --- a/sys/arch/m88k/include/pmap.h +++ b/sys/arch/m88k/include/pmap.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.h,v 1.28 2023/02/12 07:02:43 aoyama Exp $ */ +/* $OpenBSD: pmap.h,v 1.29 2023/04/13 15:23:22 miod Exp $ */ /* * Mach Operating System * Copyright (c) 1991 Carnegie Mellon University @@ -51,7 +51,6 @@ extern apr_t kernel_apr, userland_apr; #define pmap_resident_count(pmap) ((pmap)->pm_stats.resident_count) #define pmap_wired_count(pmap) ((pmap)->pm_stats.wired_count) -#define pmap_copy(dp,sp,d,l,s) do { /* nothing */ } while (0) #define pmap_update(pmap) do { /* nothing */ } while (0) #define pmap_clear_modify(pg) pmap_unsetbit(pg, PG_M) |