From: Ulrich Drepper Date: Sun, 29 Jul 2007 05:39:49 +0000 (+0000) Subject: * posix/getconf.c (vars): Add missing _SC_LEVEL4_CACHE_LINESIZE X-Git-Tag: cvs/fedora-glibc-20070731T1624~9 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5b74caf65208b16ba4480551de103625af9ca434;p=thirdparty%2Fglibc.git * posix/getconf.c (vars): Add missing _SC_LEVEL4_CACHE_LINESIZE entry. --- diff --git a/ChangeLog b/ChangeLog index 754eea77b3a..9048743231b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2007-07-28 Ulrich Drepper + * posix/getconf.c (vars): Add missing _SC_LEVEL4_CACHE_LINESIZE + entry. + [BZ 4858] * stdio-common/printf_fp.c (___printf_fp): Fix special case of #.0g and value rounded to 1.0. diff --git a/posix/getconf.c b/posix/getconf.c index 885f9f96cff..7e479a1685c 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 },