diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2001-12-05 00:11:52 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2001-12-05 00:11:52 +0000 |
commit | fa0689f92d18b7b6403a25d4ccf5fe1e898bc4ac (patch) | |
tree | d9d87302c6b7f689a0bd490fcdd25ad85ed29c1b /sys/arch/m68k/include/pmap_motorola.h | |
parent | 2d6ebc6b1044ef771b2b25c09c2abffe0c0a0d3d (diff) |
Update pmap_update macro for arches Art missed. Still just a noop.
Diffstat (limited to 'sys/arch/m68k/include/pmap_motorola.h')
-rw-r--r-- | sys/arch/m68k/include/pmap_motorola.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/m68k/include/pmap_motorola.h b/sys/arch/m68k/include/pmap_motorola.h index 7c71352bdab..028c4f61faa 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.1 2001/11/30 20:54:50 miod Exp $ */ +/* $OpenBSD: pmap_motorola.h,v 1.2 2001/12/05 00:11:51 millert Exp $ */ /* * Copyright (c) 1987 Carnegie-Mellon University @@ -143,7 +143,7 @@ extern struct pv_entry *pv_table; /* array of entries, one per page */ #define pmap_resident_count(pmap) ((pmap)->pm_stats.resident_count) #define pmap_wired_count(pmap) ((pmap)->pm_stats.wired_count) -#define pmap_update() /* nothing */ +#define pmap_update(pmap) /* nothing (yet) */ extern pt_entry_t *Sysmap; extern char *vmmap; /* map for mem, dumps, etc. */ |