mirror of git://sourceware.org/git/glibc.git
Update.
2004-01-15 Ulrich Drepper <drepper@redhat.com> * elf/rtld.c: Handle platforms with HP_TIMING_NONAVAIL defined.
This commit is contained in:
parent
d8e36e001c
commit
39b04aa398
|
|
@ -1,3 +1,7 @@
|
||||||
|
2004-01-15 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* elf/rtld.c: Handle platforms with HP_TIMING_NONAVAIL defined.
|
||||||
|
|
||||||
2004-01-16 Alfred M. Szmidt <ams@kemisten.nu>
|
2004-01-16 Alfred M. Szmidt <ams@kemisten.nu>
|
||||||
|
|
||||||
* sysdeps/generic/dl-execstack.c (_dl_make_stack_executable): Adjust
|
* sysdeps/generic/dl-execstack.c (_dl_make_stack_executable): Adjust
|
||||||
|
|
|
||||||
|
|
@ -277,7 +277,13 @@ _dl_start_final (void *arg, struct dl_start_final_info *info)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (__builtin_expect (GL(dl_debug_mask) & DL_DEBUG_STATISTICS, 0))
|
if (__builtin_expect (GL(dl_debug_mask) & DL_DEBUG_STATISTICS, 0))
|
||||||
print_statistics (&rtld_total_time);
|
{
|
||||||
|
#ifndef HP_TIMING_NONAVAIL
|
||||||
|
print_statistics (&rtld_total_time);
|
||||||
|
#else
|
||||||
|
print_statistics (NULL);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
return start_addr;
|
return start_addr;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue