From: Ulrich Drepper Date: Tue, 7 Jul 1998 17:31:11 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/glibc-2_0_95~56 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a3d6fb9b428a51048b31eacd6fe7fad7095ccfd5;p=thirdparty%2Fglibc.git Update. 1998-07-07 17:28 Ulrich Drepper * elf/dl-profstub.c (_dl_profile_map): Only declare variable here. * elf/dl-support.c: Define it here... * elf/rtld.c: ...and here. --- diff --git a/ChangeLog b/ChangeLog index 4ab9d7bd485..9e79745d05c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +1998-07-07 17:28 Ulrich Drepper + + * elf/dl-profstub.c (_dl_profile_map): Only declare variable here. + * elf/dl-support.c: Define it here... + * elf/rtld.c: ...and here. + 1998-07-07 16:28 Ulrich Drepper * grp/initgroups.c: Handle directives from nsswitch.conf file. diff --git a/elf/dl-profstub.c b/elf/dl-profstub.c index 9740c6adc44..10db6407697 100644 --- a/elf/dl-profstub.c +++ b/elf/dl-profstub.c @@ -24,7 +24,7 @@ /* This is the map for the shared object we profile. It is defined here only because we test for this value being NULL or not. */ -struct link_map *_dl_profile_map; +extern struct link_map *_dl_profile_map; void diff --git a/elf/dl-support.c b/elf/dl-support.c index 73c90c2f423..418088acfa4 100644 --- a/elf/dl-support.c +++ b/elf/dl-support.c @@ -57,6 +57,9 @@ const char *_dl_profile; /* Names of shared object for which the RPATHs should be ignored. */ const char *_dl_inhibit_rpath; +/* The map for the object we will profile. */ +struct link_map *_dl_profile_map; + /* This is the address of the last stack address ever used. */ void *__libc_stack_end; diff --git a/elf/rtld.c b/elf/rtld.c index bf4a142dba2..df5db230f4a 100644 --- a/elf/rtld.c +++ b/elf/rtld.c @@ -73,6 +73,7 @@ unsigned long _dl_hwcap; struct r_search_path *_dl_search_paths; const char *_dl_profile; const char *_dl_profile_output; +struct link_map *_dl_profile_map; int _dl_debug_libs; int _dl_debug_impcalls; int _dl_debug_bindings;