summaryrefslogtreecommitdiff
path: root/sys/arch/kbus/include
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2000-01-10 03:52:45 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2000-01-10 03:52:45 +0000
commitc4d7e35492666ec7f56d61b18509cda8859943e2 (patch)
treeb6b8e55ee05623d4f2dd3d0dba83d8acf93bc834 /sys/arch/kbus/include
parent847549b3092ffc3090607904d987c1dc953328f4 (diff)
Add {v,p}addr_t and {v,p}size_t. kbus-specific code does not use them
yet, though.
Diffstat (limited to 'sys/arch/kbus/include')
-rw-r--r--sys/arch/kbus/include/types.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/arch/kbus/include/types.h b/sys/arch/kbus/include/types.h
index 998c2e32602..16dc11cffcb 100644
--- a/sys/arch/kbus/include/types.h
+++ b/sys/arch/kbus/include/types.h
@@ -1,5 +1,5 @@
/* $NetBSD: types.h,v 1.9 1996/03/14 00:48:30 pk Exp $ */
-/* $OpenBSD: types.h,v 1.3 1999/01/08 03:04:08 millert Exp $ */
+/* $OpenBSD: types.h,v 1.4 2000/01/10 03:52:44 millert Exp $ */
/*
* Copyright (c) 1992, 1993
@@ -63,6 +63,11 @@ typedef struct label_t {
typedef unsigned long vm_offset_t;
typedef unsigned long vm_size_t;
+typedef unsigned long vaddr_t;
+typedef unsigned long paddr_t;
+typedef unsigned long vsize_t;
+typedef unsigned long psize_t;
+
/*
* Basic integral types. Omit the typedef if
* not possible for a machine/compiler combination.