summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2008-12-17 06:11:42 +0000
committerimp <imp@FreeBSD.org>2008-12-17 06:11:42 +0000
commite4a424be307b05ab46e5eed3a5788634cc5ae8d9 (patch)
tree37369244350dda151e909918e7f1c4f9c68323d1
parent4b0736516edcee5ab7ef5051c75ecb3efcbbc476 (diff)
downloadFreeBSD-src-e4a424be307b05ab46e5eed3a5788634cc5ae8d9.zip
FreeBSD-src-e4a424be307b05ab46e5eed3a5788634cc5ae8d9.tar.gz
Remove obsolete AT_DEBUG stuff. It never should have been committed
in the first place, let alone migrated to linux emulation. Reviewed by: peter, rdivacky
-rw-r--r--sys/amd64/linux32/linux32_sysvec.c2
-rw-r--r--sys/i386/linux/linux_sysvec.c2
2 files changed, 0 insertions, 4 deletions
diff --git a/sys/amd64/linux32/linux32_sysvec.c b/sys/amd64/linux32/linux32_sysvec.c
index 3acee30..aaa7458 100644
--- a/sys/amd64/linux32/linux32_sysvec.c
+++ b/sys/amd64/linux32/linux32_sysvec.c
@@ -254,8 +254,6 @@ elf_linux_fixup(register_t **stack_base, struct image_params *imgp)
args = (Elf32_Auxargs *)imgp->auxargs;
pos = base + (imgp->args->argc + imgp->args->envc + 2);
- if (args->trace)
- AUXARGS_ENTRY_32(pos, AT_DEBUG, 1);
if (args->execfd != -1)
AUXARGS_ENTRY_32(pos, AT_EXECFD, args->execfd);
AUXARGS_ENTRY_32(pos, AT_PHDR, args->phdr);
diff --git a/sys/i386/linux/linux_sysvec.c b/sys/i386/linux/linux_sysvec.c
index 7444901..42365fb 100644
--- a/sys/i386/linux/linux_sysvec.c
+++ b/sys/i386/linux/linux_sysvec.c
@@ -245,8 +245,6 @@ elf_linux_fixup(register_t **stack_base, struct image_params *imgp)
args = (Elf32_Auxargs *)imgp->auxargs;
pos = *stack_base + (imgp->args->argc + imgp->args->envc + 2);
- if (args->trace)
- AUXARGS_ENTRY(pos, AT_DEBUG, 1);
if (args->execfd != -1)
AUXARGS_ENTRY(pos, AT_EXECFD, args->execfd);
AUXARGS_ENTRY(pos, AT_PHDR, args->phdr);
OpenPOWER on IntegriCloud