diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2001-11-28 16:13:30 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2001-11-28 16:13:30 +0000 |
commit | 18fa55b7c0a57038bc44966e200e42c95c1548cd (patch) | |
tree | f15be45f48de10a2cf3069a322d112dd49b3c21b /sys/arch/hp300/include/pmap.h | |
parent | c838246d36eaa84d99978e74064e65cd79f105d2 (diff) |
zap some typedefs.
vm_map_t -> struct vm_map *
vm_map_entry_t -> struct vm_map_entry *
simple_lock_data_t -> struct simplelock
(uvm not done yet, coming in the next commit)
Diffstat (limited to 'sys/arch/hp300/include/pmap.h')
-rw-r--r-- | sys/arch/hp300/include/pmap.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hp300/include/pmap.h b/sys/arch/hp300/include/pmap.h index d08446a488f..3d427d92af3 100644 --- a/sys/arch/hp300/include/pmap.h +++ b/sys/arch/hp300/include/pmap.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.h,v 1.9 2001/11/27 22:05:32 miod Exp $ */ +/* $OpenBSD: pmap.h,v 1.10 2001/11/28 16:13:28 art Exp $ */ /* $NetBSD: pmap.h,v 1.13 1997/06/10 18:58:19 veego Exp $ */ /* @@ -67,7 +67,7 @@ struct pmap { st_entry_t *pm_stpa; /* 040: ST phys addr */ short pm_sref; /* segment table ref count */ short pm_count; /* pmap reference count */ - simple_lock_data_t pm_lock; /* lock on pmap */ + struct simplelock pm_lock; /* lock on pmap */ struct pmap_statistics pm_stats; /* pmap statistics */ long pm_ptpages; /* more stats: PT pages */ }; |