View | Details | Raw Unified | Return to bug 33117
Collapse All | Expand All

(-)/usr/src/sys/i386/include/pcb.h (+2 lines)
Lines 86-93 Link Here
86
 * The pcb is augmented with machine-dependent additional data for
86
 * The pcb is augmented with machine-dependent additional data for
87
 * core dumps. For the i386: ???
87
 * core dumps. For the i386: ???
88
 */
88
 */
89
#if ! defined(__STRICT_ANSI__)
89
struct md_coredump {
90
struct md_coredump {
90
};
91
};
92
#endif
91
93
92
#ifdef _KERNEL
94
#ifdef _KERNEL
93
95
(-)/usr/src/sys/sys/user.h (+3 lines)
Lines 106-112 Link Here
106
	 * Remaining fields for a.out core dumps - not valid at other times!
106
	 * Remaining fields for a.out core dumps - not valid at other times!
107
	 */
107
	 */
108
	struct	kinfo_proc u_kproc;	/* proc + eproc */
108
	struct	kinfo_proc u_kproc;	/* proc + eproc */
109
110
#if !defined(__STRICT_ANSI__)		/* no empty structs please */
109
	struct	md_coredump u_md;	/* machine dependent glop */
111
	struct	md_coredump u_md;	/* machine dependent glop */
112
#endif
110
};
113
};
111
114
112
#endif
115
#endif

Return to bug 33117