summaryrefslogtreecommitdiffstats
path: root/sys/i386/linux/linux_sysvec.c
diff options
context:
space:
mode:
authordas <das@FreeBSD.org>2004-11-20 02:32:04 +0000
committerdas <das@FreeBSD.org>2004-11-20 02:32:04 +0000
commit8d8b5ace18d4442cbb949e9e1f48a0cfdb1d7c2e (patch)
tree2f9d83c630743799db13ebaae3fca79b14ffcf28 /sys/i386/linux/linux_sysvec.c
parent02205f8827ecfd431c5893cab3129df47d56a1f3 (diff)
downloadFreeBSD-src-8d8b5ace18d4442cbb949e9e1f48a0cfdb1d7c2e.zip
FreeBSD-src-8d8b5ace18d4442cbb949e9e1f48a0cfdb1d7c2e.tar.gz
Maintain the broken state of backwards compatibilty for a.out (and
PECOFF!) core dumps. None of the old versions of gdb I tried were able to read a.out core dumps before or after this change. Reviewed by: arch@
Diffstat (limited to 'sys/i386/linux/linux_sysvec.c')
-rw-r--r--sys/i386/linux/linux_sysvec.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/i386/linux/linux_sysvec.c b/sys/i386/linux/linux_sysvec.c
index bb7e338..8319c03 100644
--- a/sys/i386/linux/linux_sysvec.c
+++ b/sys/i386/linux/linux_sysvec.c
@@ -94,6 +94,8 @@ MALLOC_DEFINE(M_LINUX, "linux", "Linux mode structures");
#define LINUX_SYS_linux_rt_sendsig 0
#define LINUX_SYS_linux_sendsig 0
+#define uarea_pages 1
+
extern char linux_sigcode[];
extern int linux_szsigcode;
@@ -746,9 +748,8 @@ linux_aout_coredump(struct thread *td, struct vnode *vp, off_t limit)
if (tempuser == NULL)
return (ENOMEM);
PROC_LOCK(p);
- fill_kinfo_proc(p, &p->p_uarea->u_kproc);
+ fill_user(p, (struct user *)tempuser);
PROC_UNLOCK(p);
- bcopy(p->p_uarea, tempuser, sizeof(struct user));
bcopy(td->td_frame,
tempuser + ctob(uarea_pages) +
((caddr_t)td->td_frame - (caddr_t)td->td_kstack),
OpenPOWER on IntegriCloud