Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/mips/include use namespace protected types.



details:   https://anonhg.NetBSD.org/src/rev/be7697223cb2
branches:  trunk
changeset: 813328:be7697223cb2
user:      christos <christos%NetBSD.org@localhost>
date:      Sun Jan 24 16:13:19 2016 +0000

description:
use namespace protected types.

diffstat:

 sys/arch/mips/include/reg.h |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (28 lines):

diff -r 0edc68048921 -r be7697223cb2 sys/arch/mips/include/reg.h
--- a/sys/arch/mips/include/reg.h       Sun Jan 24 16:08:05 2016 +0000
+++ b/sys/arch/mips/include/reg.h       Sun Jan 24 16:13:19 2016 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: reg.h,v 1.15 2011/08/16 06:58:15 matt Exp $    */
+/*     $NetBSD: reg.h,v 1.16 2016/01/24 16:13:19 christos Exp $        */
 
 /*
  * Copyright (c) 1988 University of Utah.
@@ -43,15 +43,15 @@
 
 
 struct reg {
-       mips_reg_t      r_regs[38];
+       __register_t    r_regs[38];
 };
 
 struct fpreg {
-       mips_fpreg_t    r_regs[33];
+       __fpregister_t  r_regs[33];
 };
 
 struct dspreg {
-       mips_reg_t      r_regs[8];
+       __register_t    r_regs[8];
 };
 
 #if defined(__mips_n32) || defined(__mips_n64)



Home | Main Index | Thread Index | Old Index