diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-03-31 08:36:05 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-03-31 08:36:05 +0000 |
commit | 4317f9e1377c92493459f2796c37da27c01bccf7 (patch) | |
tree | 37f8f4e349b3dfdd41a31ebd0e984e645c698bbc /elf/dl-load.c | |
parent | 0491011bdeaa994079912b9955a1fbf7e6fb5c59 (diff) | |
download | glibc-4317f9e1377c92493459f2796c37da27c01bccf7.tar glibc-4317f9e1377c92493459f2796c37da27c01bccf7.tar.gz glibc-4317f9e1377c92493459f2796c37da27c01bccf7.tar.bz2 glibc-4317f9e1377c92493459f2796c37da27c01bccf7.zip |
Update.
* nss/nsswitch.c (__nss_lookup): Adjust comment.
Diffstat (limited to 'elf/dl-load.c')
-rw-r--r-- | elf/dl-load.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/elf/dl-load.c b/elf/dl-load.c index c75a91392e..212b22307a 100644 --- a/elf/dl-load.c +++ b/elf/dl-load.c @@ -331,6 +331,10 @@ _dl_init_paths (const char *llp) variable. */ struct link_map *l; + /* Names of important hardware capabilities. */ + char **hwcap_names; + size_t nhwcap_names; + /* Number of elements in the library path. */ size_t nllp; @@ -347,6 +351,10 @@ _dl_init_paths (const char *llp) else nllp = 0; + /* Get the capabilities. */ + hwcap_names = _dl_important_hwcaps (&nhwcap_names, + _dl_platform, _dl_platformlen); + l = _dl_loaded; if (l != NULL) { |