Sun Jan 24 16:00:29 2016 UTC ()
use namespace protected types.


(christos)
diff -r1.29 -r1.30 src/sys/arch/mips/include/signal.h

cvs diff -r1.29 -r1.30 src/sys/arch/mips/include/signal.h (expand / switch to unified diff)

--- src/sys/arch/mips/include/signal.h 2009/12/14 00:46:05 1.29
+++ src/sys/arch/mips/include/signal.h 2016/01/24 16:00:29 1.30
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1/* $NetBSD: signal.h,v 1.29 2009/12/14 00:46:05 matt Exp $ */ 1/* $NetBSD: signal.h,v 1.30 2016/01/24 16:00:29 christos Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 1992, 1993 4 * Copyright (c) 1992, 1993
5 * The Regents of the University of California. All rights reserved. 5 * The Regents of the University of California. All rights reserved.
6 * 6 *
7 * This code is derived from software contributed to Berkeley by 7 * This code is derived from software contributed to Berkeley by
8 * Ralph Campbell. 8 * Ralph Campbell.
9 * 9 *
10 * Redistribution and use in source and binary forms, with or without 10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions 11 * modification, are permitted provided that the following conditions
12 * are met: 12 * are met:
13 * 1. Redistributions of source code must retain the above copyright 13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer. 14 * notice, this list of conditions and the following disclaimer.
@@ -96,20 +96,20 @@ struct sigcontext { \ @@ -96,20 +96,20 @@ struct sigcontext { \
96 sigset_t sc_mask; /* signal mask to restore (new style) */ \ 96 sigset_t sc_mask; /* signal mask to restore (new style) */ \
97} 97}
98 98
99/* 99/*
100 * These will be identical in O32 100 * These will be identical in O32
101 */ 101 */
102#ifdef _KERNEL 102#ifdef _KERNEL
103/* 103/*
104 * We need this only compatibility. 104 * We need this only compatibility.
105 */ 105 */
106_SIGCONTEXT_DEFINE(sigcontext, int, int); 106_SIGCONTEXT_DEFINE(sigcontext, int, int);
107#endif 107#endif
108#ifdef _LIBC 108#ifdef _LIBC
109_SIGCONTEXT_DEFINE(sigcontext, register_t, fpregister_t); 109_SIGCONTEXT_DEFINE(sigcontext, __register_t, __fpregister_t);
110#endif 110#endif
111 111
112#endif /* _LIBC || _KERNEL */ 112#endif /* _LIBC || _KERNEL */
113 113
114#endif /* !_LANGUAGE_ASSEMBLY */ 114#endif /* !_LANGUAGE_ASSEMBLY */
115#endif /* !_MIPS_SIGNAL_H_ */ 115#endif /* !_MIPS_SIGNAL_H_ */