Module Name: src Committed By: matt Date: Fri Apr 30 16:32:16 UTC 2010
Modified Files: src/sys/arch/mips/include [matt-nb5-mips64]: mcontext.h Log Message: Define mcontext_o32_t if !O32 To generate a diff of this commit: cvs rdiff -u -r1.8.18.3 -r1.8.18.4 src/sys/arch/mips/include/mcontext.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/arch/mips/include/mcontext.h diff -u src/sys/arch/mips/include/mcontext.h:1.8.18.3 src/sys/arch/mips/include/mcontext.h:1.8.18.4 --- src/sys/arch/mips/include/mcontext.h:1.8.18.3 Sun Sep 13 23:38:04 2009 +++ src/sys/arch/mips/include/mcontext.h Fri Apr 30 16:32:16 2010 @@ -1,4 +1,4 @@ -/* $NetBSD: mcontext.h,v 1.8.18.3 2009/09/13 23:38:04 matt Exp $ */ +/* $NetBSD: mcontext.h,v 1.8.18.4 2010/04/30 16:32:16 matt Exp $ */ /*- * Copyright (c) 1999, 2002 The NetBSD Foundation, Inc. @@ -127,7 +127,7 @@ __fpregset_t __fpregs; } mcontext_t; -#if defined(_KERNEL) && defined(_LP64) +#if defined(_KERNEL) && !defined(__mips_o32) typedef __int32_t __greg32_t; typedef __greg32_t __gregset32_t[_NGREG];