Module Name: src Committed By: uebayasi Date: Thu Aug 20 04:22:54 UTC 2009
Modified Files: src/sys/arch/mips/mips [matt-nb5-mips64]: syscall.c Log Message: #error -> panic() for N32/N64 so that we can build test now. To generate a diff of this commit: cvs rdiff -u -r1.37 -r1.37.12.1 src/sys/arch/mips/mips/syscall.c 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/mips/syscall.c diff -u src/sys/arch/mips/mips/syscall.c:1.37 src/sys/arch/mips/mips/syscall.c:1.37.12.1 --- src/sys/arch/mips/mips/syscall.c:1.37 Sat Oct 25 10:41:05 2008 +++ src/sys/arch/mips/mips/syscall.c Thu Aug 20 04:22:54 2009 @@ -1,4 +1,4 @@ -/* $NetBSD: syscall.c,v 1.37 2008/10/25 10:41:05 tsutsui Exp $ */ +/* $NetBSD: syscall.c,v 1.37.12.1 2009/08/20 04:22:54 uebayasi Exp $ */ /*- * Copyright (c) 2001 The NetBSD Foundation, Inc. @@ -107,7 +107,7 @@ #include <sys/cdefs.h> /* RCS ID & Copyright macro defns */ -__KERNEL_RCSID(0, "$NetBSD: syscall.c,v 1.37 2008/10/25 10:41:05 tsutsui Exp $"); +__KERNEL_RCSID(0, "$NetBSD: syscall.c,v 1.37.12.1 2009/08/20 04:22:54 uebayasi Exp $"); #if defined(_KERNEL_OPT) #include "opt_sa.h" @@ -260,7 +260,7 @@ args[2] = frame->f_regs[_R_A2]; args[3] = frame->f_regs[_R_A3]; #else -# error syscall not implemented for current MIPS ABI + panic("syscall not implemented for current MIPS ABI\n"); #endif } else { args = copyargs; @@ -408,7 +408,7 @@ args[2] = frame->f_regs[_R_A2]; args[3] = frame->f_regs[_R_A3]; #else -# error syscall not implemented for current MIPS ABI + panic("syscall not implemented for current MIPS ABI\n"); #endif } else { args = copyargs;