diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 1999-07-07 23:16:42 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 1999-07-07 23:16:42 +0000 |
commit | aaa7e978ab0fa0994f3213dcc24473e15d9f39b4 (patch) | |
tree | b6f45f8e1777f13b012152bb277be68a7b9feb44 /sys/arch/i386/include | |
parent | 34764acc8b4206f9dbcf5ba62b0a86a075913962 (diff) |
define vaddr_t, paddr_t, vsize_t and psize_t
Diffstat (limited to 'sys/arch/i386/include')
-rw-r--r-- | sys/arch/i386/include/types.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/sys/arch/i386/include/types.h b/sys/arch/i386/include/types.h index c8391f16d8b..9a2548558f8 100644 --- a/sys/arch/i386/include/types.h +++ b/sys/arch/i386/include/types.h @@ -1,5 +1,5 @@ /* $NetBSD: types.h,v 1.12 1995/12/24 01:08:03 mycroft Exp $ */ -/* $OpenBSD: types.h,v 1.6 1999/02/26 04:19:25 art Exp $ */ +/* $OpenBSD: types.h,v 1.7 1999/07/07 23:16:40 art Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -54,13 +54,10 @@ typedef struct label_t { typedef unsigned long vm_offset_t; typedef unsigned long vm_size_t; -#ifdef UVM -/* UVM compat (or we should consider switching to those) */ -typedef unsigned long paddr_t; -typedef unsigned long psize_t; typedef unsigned long vaddr_t; +typedef unsigned long paddr_t; typedef unsigned long vsize_t; -#endif +typedef unsigned long psize_t; /* * Basic integral types. Omit the typedef if |