PERFORCE change 100900 for review

Oleksandr Tymoshenko gonzo at FreeBSD.org
Fri Jul 7 16:41:54 UTC 2006


http://perforce.freebsd.org/chv.cgi?CH=100900

Change 100900 by gonzo at gonzo_hq on 2006/07/07 16:41:14

	Make __vm_ooffset_t and __vm_pindex_t 64 bits.

Affected files ...

.. //depot/projects/mips2/src/sys/mips/include/_types.h#3 edit

Differences ...

==== //depot/projects/mips2/src/sys/mips/include/_types.h#3 (text+ko) ====

@@ -62,6 +62,9 @@
 typedef	unsigned int	__cpumask_t;
 typedef	__int32_t	__critical_t;
 typedef	double		__double_t;
+/*
+ * XXXMIPS: should we use double here, or float?
+ */
 typedef	double		__float_t;
 typedef	__int32_t	__intfptr_t;
 typedef	__int64_t	__intmax_t;
@@ -93,9 +96,9 @@
 typedef	__uint64_t	__uint_least64_t;
 typedef	__uint32_t	__u_register_t;
 typedef	__uint32_t	__vm_offset_t;
-typedef	__int32_t	__vm_ooffset_t;
+typedef	__int64_t	__vm_ooffset_t;
 typedef	__uint32_t	__vm_paddr_t;
-typedef	__uint32_t	__vm_pindex_t;
+typedef	__uint64_t	__vm_pindex_t;
 typedef	__uint32_t	__vm_size_t;
 
 /*


More information about the p4-projects mailing list