diff options
author | Konstantin Belousov <kib@FreeBSD.org> | 2017-02-04 12:26:38 +0000 |
---|---|---|
committer | Konstantin Belousov <kib@FreeBSD.org> | 2017-02-04 12:26:38 +0000 |
commit | 9fb10d635e913262789526e3cbf8b27951a34d13 (patch) | |
tree | 0f793007a88ed51e4b2e892e559a6c16f76264d4 /sys/sparc64 | |
parent | ad62ba6e96f00cff4b6da027168e1b7561549def (diff) | |
download | src-9fb10d635e913262789526e3cbf8b27951a34d13.tar.gz src-9fb10d635e913262789526e3cbf8b27951a34d13.zip |
Define the vm_ooffset_t and vm_pindex_t types as machine-independend.
The types are for the byte offset and page index in vm object. They
are similar to off_t, which is defined as 64bit MI integer. Using MI
definitions will allow to provide consistent MD values of vm
object-related maximum sizes.
Reviewed by: alc
Sponsored by: The FreeBSD Foundation
MFC after: 1 week
Notes
Notes:
svn path=/head/; revision=313194
Diffstat (limited to 'sys/sparc64')
-rw-r--r-- | sys/sparc64/include/_types.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/sparc64/include/_types.h b/sys/sparc64/include/_types.h index 62e2fe9f0adb..70b85d9e361a 100644 --- a/sys/sparc64/include/_types.h +++ b/sys/sparc64/include/_types.h @@ -88,9 +88,7 @@ typedef __uint32_t __uint_least32_t; typedef __uint64_t __uint_least64_t; typedef __uint64_t __u_register_t; typedef __uint64_t __vm_offset_t; -typedef __int64_t __vm_ooffset_t; typedef __uint64_t __vm_paddr_t; -typedef __uint64_t __vm_pindex_t; typedef __uint64_t __vm_size_t; typedef int ___wchar_t; |