* posix/getconf.c (vars): Add missing _SC_LEVEL4_CACHE_LINESIZE

entry.
This commit is contained in:
Ulrich Drepper 2007-07-29 05:39:49 +00:00
parent 8f5e140031
commit 5b74caf652
2 changed files with 6 additions and 0 deletions

View File

@ -1,5 +1,8 @@
2007-07-28 Ulrich Drepper <drepper@redhat.com> 2007-07-28 Ulrich Drepper <drepper@redhat.com>
* posix/getconf.c (vars): Add missing _SC_LEVEL4_CACHE_LINESIZE
entry.
[BZ 4858] [BZ 4858]
* stdio-common/printf_fp.c (___printf_fp): Fix special case of * stdio-common/printf_fp.c (___printf_fp): Fix special case of
#.0g and value rounded to 1.0. #.0g and value rounded to 1.0.

View File

@ -911,6 +911,9 @@ static const struct conf vars[] =
#ifdef _SC_LEVEL4_CACHE_ASSOC #ifdef _SC_LEVEL4_CACHE_ASSOC
{ "LEVEL4_CACHE_ASSOC", _SC_LEVEL4_CACHE_ASSOC, SYSCONF }, { "LEVEL4_CACHE_ASSOC", _SC_LEVEL4_CACHE_ASSOC, SYSCONF },
#endif #endif
#ifdef _SC_LEVEL4_CACHE_LINESIZE
{ "LEVEL4_CACHE_LINESIZE", _SC_LEVEL4_CACHE_LINESIZE, SYSCONF },
#endif
#ifdef _SC_IPV6 #ifdef _SC_IPV6
{ "IPV6", _SC_IPV6, SYSCONF }, { "IPV6", _SC_IPV6, SYSCONF },