mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-03 08:11:08 +00:00
Update.
1998-07-07 17:28 Ulrich Drepper <drepper@cygnus.com> * elf/dl-profstub.c (_dl_profile_map): Only declare variable here. * elf/dl-support.c: Define it here... * elf/rtld.c: ...and here.
This commit is contained in:
parent
6333c255ba
commit
a3d6fb9b42
@ -1,3 +1,9 @@
|
|||||||
|
1998-07-07 17:28 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
|
* 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 <drepper@cygnus.com>
|
1998-07-07 16:28 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
* grp/initgroups.c: Handle directives from nsswitch.conf file.
|
* grp/initgroups.c: Handle directives from nsswitch.conf file.
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
|
|
||||||
/* This is the map for the shared object we profile. It is defined here
|
/* 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. */
|
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
|
void
|
||||||
|
@ -57,6 +57,9 @@ const char *_dl_profile;
|
|||||||
/* Names of shared object for which the RPATHs should be ignored. */
|
/* Names of shared object for which the RPATHs should be ignored. */
|
||||||
const char *_dl_inhibit_rpath;
|
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. */
|
/* This is the address of the last stack address ever used. */
|
||||||
void *__libc_stack_end;
|
void *__libc_stack_end;
|
||||||
|
|
||||||
|
@ -73,6 +73,7 @@ unsigned long _dl_hwcap;
|
|||||||
struct r_search_path *_dl_search_paths;
|
struct r_search_path *_dl_search_paths;
|
||||||
const char *_dl_profile;
|
const char *_dl_profile;
|
||||||
const char *_dl_profile_output;
|
const char *_dl_profile_output;
|
||||||
|
struct link_map *_dl_profile_map;
|
||||||
int _dl_debug_libs;
|
int _dl_debug_libs;
|
||||||
int _dl_debug_impcalls;
|
int _dl_debug_impcalls;
|
||||||
int _dl_debug_bindings;
|
int _dl_debug_bindings;
|
||||||
|
Loading…
Reference in New Issue
Block a user