summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/alpha/include/pcb.h10
-rw-r--r--sys/amd64/include/pcb.h10
-rw-r--r--sys/i386/include/pcb.h10
-rw-r--r--sys/ia64/include/pcb.h7
-rw-r--r--sys/powerpc/include/pcb.h5
-rw-r--r--sys/sparc64/include/pcb.h3
-rw-r--r--sys/sys/user.h3
7 files changed, 1 insertions, 47 deletions
diff --git a/sys/alpha/include/pcb.h b/sys/alpha/include/pcb.h
index cfbdfdf74b9d..e1c063be9300 100644
--- a/sys/alpha/include/pcb.h
+++ b/sys/alpha/include/pcb.h
@@ -57,14 +57,4 @@ struct pcb {
unsigned long pcb_accessaddr; /* for [fs]uswintr [SW] */
};
-/*
- * The pcb is augmented with machine-dependent additional data for
- * core dumps. For the Alpha, that's a trap frame and the floating
- * point registers.
- */
-struct md_coredump {
- struct trapframe md_tf;
- struct fpreg md_fpstate;
-};
-
#endif /* _MACHINE_PCB_H */
diff --git a/sys/amd64/include/pcb.h b/sys/amd64/include/pcb.h
index fd06e7c6bbba..013fc00de596 100644
--- a/sys/amd64/include/pcb.h
+++ b/sys/amd64/include/pcb.h
@@ -74,16 +74,6 @@ struct pcb {
u_long __pcb_spare[2]; /* adjust to avoid core dump size changes */
};
-/*
- * The pcb is augmented with machine-dependent additional data for
- * core dumps. For the i386: ???
- */
-struct md_coredump {
-#ifdef lint
- int dummy;
-#endif
-};
-
#ifdef _KERNEL
void savectx(struct pcb *);
#endif
diff --git a/sys/i386/include/pcb.h b/sys/i386/include/pcb.h
index fd06e7c6bbba..013fc00de596 100644
--- a/sys/i386/include/pcb.h
+++ b/sys/i386/include/pcb.h
@@ -74,16 +74,6 @@ struct pcb {
u_long __pcb_spare[2]; /* adjust to avoid core dump size changes */
};
-/*
- * The pcb is augmented with machine-dependent additional data for
- * core dumps. For the i386: ???
- */
-struct md_coredump {
-#ifdef lint
- int dummy;
-#endif
-};
-
#ifdef _KERNEL
void savectx(struct pcb *);
#endif
diff --git a/sys/ia64/include/pcb.h b/sys/ia64/include/pcb.h
index a20b3422dd97..beba3544d671 100644
--- a/sys/ia64/include/pcb.h
+++ b/sys/ia64/include/pcb.h
@@ -75,13 +75,6 @@ struct pcb {
struct ia64_fpreg pcb_highfp[96]; /* f32-f127 */
};
-/*
- * The pcb is augmented with machine-dependent additional data for
- * core dumps. Not applicable...
- */
-struct md_coredump {
-};
-
#ifdef _KERNEL
void restorectx(struct pcb *);
void savectx(struct pcb *);
diff --git a/sys/powerpc/include/pcb.h b/sys/powerpc/include/pcb.h
index 425bd758e4db..c2042f2bd025 100644
--- a/sys/powerpc/include/pcb.h
+++ b/sys/powerpc/include/pcb.h
@@ -56,11 +56,6 @@ struct pcb {
stuff. */
};
-struct md_coredump {
- struct trapframe frame;
- struct fpu fpstate;
-};
-
#ifdef _KERNEL
#ifndef curpcb
diff --git a/sys/sparc64/include/pcb.h b/sys/sparc64/include/pcb.h
index 36d978b025d9..2404c25d39fa 100644
--- a/sys/sparc64/include/pcb.h
+++ b/sys/sparc64/include/pcb.h
@@ -44,9 +44,6 @@ struct pcb {
struct rwindow pcb_rw[MAXWIN];
};
-struct md_coredump {
-};
-
#ifdef _KERNEL
int savectx(struct pcb *pcb);
#endif
diff --git a/sys/sys/user.h b/sys/sys/user.h
index 00eb90119ca2..8aad2ba8cd0d 100644
--- a/sys/sys/user.h
+++ b/sys/sys/user.h
@@ -176,10 +176,9 @@ struct user {
struct sigacts u_sigacts; /* *p_sigacts */
struct pstats u_stats; /* *p_stats */
/*
- * Remaining fields for a.out core dumps - not valid at other times!
+ * Remaining field for a.out core dumps - not valid at other times!
*/
struct kinfo_proc u_kproc; /* eproc */
- struct md_coredump u_md; /* glop */
};
#endif