diff options
author | Richard Henderson <rth@redhat.com> | 2007-03-13 21:25:16 +0000 |
---|---|---|
committer | Richard Henderson <rth@redhat.com> | 2007-03-13 21:25:16 +0000 |
commit | 47dbe62b552dee48242bc8437caed215d5f19435 (patch) | |
tree | 19995d87d57293f99fc0a5b10e5a89edef14888d /sysdeps/unix/sysv/linux/alpha/sysconf.c | |
parent | b8097bed55c6d3e4fcdeedc231d659de60911d61 (diff) | |
download | glibc-47dbe62b552dee48242bc8437caed215d5f19435.zip glibc-47dbe62b552dee48242bc8437caed215d5f19435.tar.gz glibc-47dbe62b552dee48242bc8437caed215d5f19435.tar.bz2 |
* elf/dl-support.c (_dl_aux_init): Honor DL_PLATFORM_AUXV.
* sysdeps/unix/sysv/linux/alpha/dl-auxv.h: New file.
* sysdeps/unix/sysv/linux/alpha/dl-support.c: New file.
* sysdeps/unix/sysv/linux/alpha/dl-sysdep.c (__libc_alpha_cache_shape):
Move to dl-auxv.h; initialize instead of extern weak.
(DL_PLATFORM_AUXV): Move to dl-auxv.h; don't test for undef
weak symbol.
* sysdeps/unix/sysv/linux/alpha/sysconf.c (__libc_alpha_cache_shape):
Extern instead of initialized.
* elf/dl-support.c (_dl_aux_init): Honor DL_PLATFORM_AUXV.
* sysdeps/unix/sysv/linux/alpha/dl-auxv.h: New file.
* sysdeps/unix/sysv/linux/alpha/dl-support.c: New file.
* sysdeps/unix/sysv/linux/alpha/dl-sysdep.c (__libc_alpha_cache_shape):
Move to dl-auxv.h; initialize instead of extern weak.
(DL_PLATFORM_AUXV): Move to dl-auxv.h; don't test for undef
weak symbol.
* sysdeps/unix/sysv/linux/alpha/sysconf.c (__libc_alpha_cache_shape):
Extern instead of initialized.
2007-03-13 Richard Henderson <rth@redhat.com>
Diffstat (limited to 'sysdeps/unix/sysv/linux/alpha/sysconf.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/alpha/sysconf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/alpha/sysconf.c b/sysdeps/unix/sysv/linux/alpha/sysconf.c index 2bbaf1f..3e5b4ee 100644 --- a/sysdeps/unix/sysv/linux/alpha/sysconf.c +++ b/sysdeps/unix/sysv/linux/alpha/sysconf.c @@ -27,7 +27,7 @@ static long int linux_sysconf (int name); #define CSHAPE(totalsize, linesize, assoc) \ ((totalsize & ~0xff) | (linesize << 4) | assoc) -long __libc_alpha_cache_shape[4] = { -2, -2, -2, -2 }; +extern long __libc_alpha_cache_shape[4]; static inline unsigned long implver (void) |