diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-02-27 09:34:31 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-02-27 09:34:31 +0000 |
commit | 62dcee574f77522535c9062203beec1fad2b794a (patch) | |
tree | 0a1cd6bae8aac9a0d3dcfa0de469b8f96313bb8d /elf/dl-support.c | |
parent | 4d8bbe638067929150a56ff9b625b1454eea336f (diff) | |
download | glibc-62dcee574f77522535c9062203beec1fad2b794a.tar glibc-62dcee574f77522535c9062203beec1fad2b794a.tar.gz glibc-62dcee574f77522535c9062203beec1fad2b794a.tar.bz2 glibc-62dcee574f77522535c9062203beec1fad2b794a.zip |
Replace _dl_debug_* variables with _dl_debug_mask.
Diffstat (limited to 'elf/dl-support.c')
-rw-r--r-- | elf/dl-support.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/elf/dl-support.c b/elf/dl-support.c index 24f598c856..8c10180e26 100644 --- a/elf/dl-support.c +++ b/elf/dl-support.c @@ -37,13 +37,7 @@ char **_dl_argv = &__progname; /* This is checked for some error messages. */ const char *_dl_platform; size_t _dl_platformlen; -int _dl_debug_libs; -int _dl_debug_impcalls; -int _dl_debug_bindings; -int _dl_debug_symbols; -int _dl_debug_versions; -int _dl_debug_reloc; -int _dl_debug_files; +int _dl_debug_mask; int _dl_lazy; /* XXX I know about at least one case where we depend on the old weak behavior (it has to do with librt). Until we get DSO groups implemented |