Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/playstation2/include int128_t and u_int128_t are wr...



details:   https://anonhg.NetBSD.org/src/rev/ffbbd35a047b
branches:  trunk
changeset: 520076:ffbbd35a047b
user:      uch <uch%NetBSD.org@localhost>
date:      Wed Jan 02 12:38:46 2002 +0000

description:
int128_t and u_int128_t are wrapped in defined(_KERNEL) && defined(MIPS3_5900)

diffstat:

 sys/arch/playstation2/include/types.h |  4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diffs (15 lines):

diff -r 5b4be2434c8f -r ffbbd35a047b sys/arch/playstation2/include/types.h
--- a/sys/arch/playstation2/include/types.h     Wed Jan 02 12:36:20 2002 +0000
+++ b/sys/arch/playstation2/include/types.h     Wed Jan 02 12:38:46 2002 +0000
@@ -1,8 +1,10 @@
-/*     $NetBSD: types.h,v 1.1 2001/10/16 15:38:52 uch Exp $    */
+/*     $NetBSD: types.h,v 1.2 2002/01/02 12:38:46 uch Exp $    */
 
 #include <mips/types.h>
 
 #define        __HAVE_GENERIC_SOFT_INTERRUPTS
 
+#if defined(_KERNEL) && defined(MIPS3_5900)
 typedef int int128_t __attribute__((__mode__(TI)));
 typedef unsigned int u_int128_t __attribute__((__mode__(TI)));
+#endif /* _KERNEL && MIPS3_5900 */



Home | Main Index | Thread Index | Old Index