diff options
author | Ulrich Drepper <drepper@redhat.com> | 2007-07-29 05:39:49 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2007-07-29 05:39:49 +0000 |
commit | 5b74caf65208b16ba4480551de103625af9ca434 (patch) | |
tree | 1467945786a66982fff4ec115343583f2572310c /posix/getconf.c | |
parent | 8f5e140031a944855846eb745c13e013c7b5539f (diff) | |
download | glibc-5b74caf65208b16ba4480551de103625af9ca434.zip glibc-5b74caf65208b16ba4480551de103625af9ca434.tar.gz glibc-5b74caf65208b16ba4480551de103625af9ca434.tar.bz2 |
* posix/getconf.c (vars): Add missing _SC_LEVEL4_CACHE_LINESIZE
entry.
Diffstat (limited to 'posix/getconf.c')
-rw-r--r-- | posix/getconf.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/posix/getconf.c b/posix/getconf.c index 885f9f9..7e479a1 100644 --- a/posix/getconf.c +++ b/posix/getconf.c @@ -911,6 +911,9 @@ static const struct conf vars[] = #ifdef _SC_LEVEL4_CACHE_ASSOC { "LEVEL4_CACHE_ASSOC", _SC_LEVEL4_CACHE_ASSOC, SYSCONF }, #endif +#ifdef _SC_LEVEL4_CACHE_LINESIZE + { "LEVEL4_CACHE_LINESIZE", _SC_LEVEL4_CACHE_LINESIZE, SYSCONF }, +#endif #ifdef _SC_IPV6 { "IPV6", _SC_IPV6, SYSCONF }, |