Module Name: src
Committed By: matt
Date: Sat Sep 5 03:16:23 UTC 2009
Modified Files:
src/sys/arch/mips/include [matt-nb5-mips64]: proc.h
Log Message:
Make sure this is quad-word (16 byte) aligned. Thus when one is allocated
on the stack, the stack stays 16 byte aligned.
To generate a diff of this commit:
cvs rdiff -u -r1.21.36.2 -r1.21.36.3 src/sys/arch/mips/include/proc.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/proc.h
diff -u src/sys/arch/mips/include/proc.h:1.21.36.2 src/sys/arch/mips/include/proc.h:1.21.36.3
--- src/sys/arch/mips/include/proc.h:1.21.36.2 Fri Aug 21 17:20:46 2009
+++ src/sys/arch/mips/include/proc.h Sat Sep 5 03:16:23 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: proc.h,v 1.21.36.2 2009/08/21 17:20:46 matt Exp $ */
+/* $NetBSD: proc.h,v 1.21.36.3 2009/09/05 03:16:23 matt Exp $ */
/*
* Copyright (c) 1992, 1993
@@ -70,7 +70,7 @@
struct frame {
mips_reg_t f_regs[38];
u_int32_t f_ppl; /* previous priority level */
- int32_t f_pad; /* for 8 byte aligned */
+ mips_reg_t f_pad; /* for quadword alignment */
};
#ifdef _KERNEL