summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>2002-10-15 00:02:50 +0000
committerpeter <peter@FreeBSD.org>2002-10-15 00:02:50 +0000
commit460da4d5cb9e3572a444185e03ef07b4e6b2bd00 (patch)
treea8ae727f6f72b425f6ad30702880f93e8baf7b97 /sys
parentf44a0bb8f927f75cea0a810df38d33fbda57c0db (diff)
downloadFreeBSD-src-460da4d5cb9e3572a444185e03ef07b4e6b2bd00.zip
FreeBSD-src-460da4d5cb9e3572a444185e03ef07b4e6b2bd00.tar.gz
The a.out md_coredump stuff isn't referenced anywhere anymore, and
hasn't been filled in for ages.. Nuked.
Diffstat (limited to 'sys')
-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 cfbdfdf..e1c063b 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 fd06e7c..013fc00 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 fd06e7c..013fc00 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 a20b342..beba354 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 425bd75..c2042f2 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 36d978b..2404c25 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 00eb901..8aad2ba 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
OpenPOWER on IntegriCloud