diff options
| author | thorpej <thorpej@NetBSD.org> | 2001-04-22 00:33:59 +0000 |
|---|---|---|
| committer | thorpej <thorpej@NetBSD.org> | 2001-04-22 00:33:59 +0000 |
| commit | 47386227126aba3ffd9f0a3d40e0faeb17d64405 (patch) | |
| tree | ca4cee6dd8f39b8d3a8ae4dcb8bdb0416351b648 /sys/arch/atari/include | |
| parent | 68ec0583b46592ce3c301cb49b81fb06cb9682ce (diff) | |
Give pmap_update() an argument (a pmap_t) so that it knows which
pmap it should be updating.
Diffstat (limited to 'sys/arch/atari/include')
| -rw-r--r-- | sys/arch/atari/include/pmap.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/atari/include/pmap.h b/sys/arch/atari/include/pmap.h index c1b9f88936c..3c165dbe51e 100644 --- a/sys/arch/atari/include/pmap.h +++ b/sys/arch/atari/include/pmap.h @@ -1,4 +1,4 @@ -/* $NetBSD: pmap.h,v 1.22 2001/04/21 23:51:16 thorpej Exp $ */ +/* $NetBSD: pmap.h,v 1.23 2001/04/22 00:34:00 thorpej Exp $ */ /* * Copyright (c) 1987 Carnegie-Mellon University @@ -153,7 +153,7 @@ struct pmap kernel_pmap_store; #define pmap_resident_count(pmap) ((pmap)->pm_stats.resident_count) #define pmap_wired_count(pmap) ((pmap)->pm_stats.wired_count) -#define pmap_update() /* nothing (yet) */ +#define pmap_update(pmap) /* nothing (yet) */ #define active_user_pmap(pm) \ (curproc && \ |
