Remove two remnant uses of AT_DEBUG.

This commit is contained in:
Konstantin Belousov 2008-12-17 13:13:35 +00:00
parent a1432b4c99
commit 6f3475454e
2 changed files with 0 additions and 5 deletions

View File

@ -218,8 +218,6 @@ svr4_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);

View File

@ -894,9 +894,6 @@ __elfN(freebsd_fixup)(register_t **stack_base, struct image_params *imgp)
base = (Elf_Addr *)*stack_base;
pos = 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);
}