mirror of git://sourceware.org/git/glibc.git
2005-01-21 Roland McGrath <roland@redhat.com>
* elf/dl-runtime.c (_dl_profile_fixup): Remove const from REGS. * sysdeps/i386/dl-machine.h: Update decl.
This commit is contained in:
parent
be184b1d26
commit
91bf35de4c
|
|
@ -1,5 +1,5 @@
|
||||||
/* On-demand PLT fixup for shared objects.
|
/* On-demand PLT fixup for shared objects.
|
||||||
Copyright (C) 1995-2002, 2003, 2004, 2005 Free Software Foundation, Inc.
|
Copyright (C) 1995-2002,2003,2004,2005 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
|
|
@ -129,7 +129,7 @@ _dl_profile_fixup (
|
||||||
ELF_MACHINE_RUNTIME_FIXUP_ARGS,
|
ELF_MACHINE_RUNTIME_FIXUP_ARGS,
|
||||||
#endif
|
#endif
|
||||||
struct link_map *l, ElfW(Word) reloc_offset,
|
struct link_map *l, ElfW(Word) reloc_offset,
|
||||||
ElfW(Addr) retaddr, const void *regs, long int *framesizep)
|
ElfW(Addr) retaddr, void *regs, long int *framesizep)
|
||||||
{
|
{
|
||||||
void (*mcount_fct) (ElfW(Addr), ElfW(Addr)) = INTUSE(_dl_mcount);
|
void (*mcount_fct) (ElfW(Addr), ElfW(Addr)) = INTUSE(_dl_mcount);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -162,7 +162,7 @@ extern ElfW(Addr) _dl_fixup (struct link_map *__unbounded l,
|
||||||
ARCH_FIXUP_ATTRIBUTE;
|
ARCH_FIXUP_ATTRIBUTE;
|
||||||
extern ElfW(Addr) _dl_profile_fixup (struct link_map *l,
|
extern ElfW(Addr) _dl_profile_fixup (struct link_map *l,
|
||||||
ElfW(Word) reloc_offset,
|
ElfW(Word) reloc_offset,
|
||||||
ElfW(Addr) retaddr, const void *regs,
|
ElfW(Addr) retaddr, void *regs,
|
||||||
long int *framesizep)
|
long int *framesizep)
|
||||||
ARCH_FIXUP_ATTRIBUTE;
|
ARCH_FIXUP_ATTRIBUTE;
|
||||||
# endif
|
# endif
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue