The a.out md_coredump stuff isn't referenced anywhere anymore, and
hasn't been filled in for ages.. Nuked.
This commit is contained in:
parent
962deac027
commit
af3f249f3a
@ -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 */
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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 *);
|
||||
|
@ -56,11 +56,6 @@ struct pcb {
|
||||
stuff. */
|
||||
};
|
||||
|
||||
struct md_coredump {
|
||||
struct trapframe frame;
|
||||
struct fpu fpstate;
|
||||
};
|
||||
|
||||
#ifdef _KERNEL
|
||||
|
||||
#ifndef curpcb
|
||||
|
@ -44,9 +44,6 @@ struct pcb {
|
||||
struct rwindow pcb_rw[MAXWIN];
|
||||
};
|
||||
|
||||
struct md_coredump {
|
||||
};
|
||||
|
||||
#ifdef _KERNEL
|
||||
int savectx(struct pcb *pcb);
|
||||
#endif
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user