platform/upstream/glibc.git
10 years agoAdjust language-code fields of LC_ADDRESS.
Chris Leonard [Mon, 4 Nov 2013 16:21:41 +0000 (11:21 -0500)]
Adjust language-code fields of LC_ADDRESS.

10 years agoCorrect Walaita (wal) and add Unami Delaware (unm).
Chris Leonard [Mon, 4 Nov 2013 16:04:19 +0000 (11:04 -0500)]
Correct Walaita (wal) and add Unami Delaware (unm).

10 years agoDefine __STDC_IEC_559* based on __GCC_IEC_559*.
Joseph Myers [Mon, 4 Nov 2013 15:43:57 +0000 (15:43 +0000)]
Define __STDC_IEC_559* based on __GCC_IEC_559*.

10 years agoAdjust language-code fields of LC_ADDRESS.
Chris Leonard [Mon, 4 Nov 2013 04:51:46 +0000 (23:51 -0500)]
Adjust language-code fields of LC_ADDRESS.

10 years agoAdjust language-code fields of LC_ADDRESS.
Chris Leonard [Mon, 4 Nov 2013 04:10:15 +0000 (23:10 -0500)]
Adjust language-code fields of LC_ADDRESS.

10 years agoAdd Quechua, Southern (quz) and Silesian (szl) to iso-639.def.
Chris Leonard [Sun, 3 Nov 2013 17:43:06 +0000 (12:43 -0500)]
Add Quechua, Southern (quz) and Silesian (szl) to iso-639.def.

10 years agoFix changelog
Ondřej Bílka [Sun, 3 Nov 2013 17:18:27 +0000 (18:18 +0100)]
Fix changelog

10 years agoRemove unused NONTLS_INIT_TP.
Ondřej Bílka [Sun, 3 Nov 2013 17:15:24 +0000 (18:15 +0100)]
Remove unused NONTLS_INIT_TP.

10 years agoAdjust language-code fields of LC_ADDRESS.
Chris Leonard [Sun, 3 Nov 2013 16:13:22 +0000 (11:13 -0500)]
Adjust language-code fields of LC_ADDRESS.

10 years agoFix malloc_info statistic. Fixes bug 16112
Ondřej Bílka [Fri, 1 Nov 2013 14:39:26 +0000 (15:39 +0100)]
Fix malloc_info statistic. Fixes bug 16112

10 years agoAdjust language-code fields of LC_ADDRESS.
Chris Leonard [Fri, 1 Nov 2013 13:38:27 +0000 (09:38 -0400)]
Adjust language-code fields of LC_ADDRESS.

10 years agoAdd Central Nahuatl (nhn).
Chris Leonard [Fri, 1 Nov 2013 13:11:26 +0000 (09:11 -0400)]
Add Central Nahuatl (nhn).

10 years agoFix description of random according to POSIX. Fixes bug 7003
Bruno Haible [Fri, 1 Nov 2013 11:23:51 +0000 (12:23 +0100)]
Fix description of random according to POSIX. Fixes bug 7003

10 years agoAdjust language-code fields of LC_ADDRESS.
Chris Leonard [Fri, 1 Nov 2013 00:26:05 +0000 (20:26 -0400)]
Adjust language-code fields of LC_ADDRESS.

10 years agoAdd Meadow Mari (mhr).
Chris Leonard [Thu, 31 Oct 2013 23:52:31 +0000 (19:52 -0400)]
Add Meadow Mari (mhr).

10 years agoRestrict shm_open and shm_unlink to SHMDIR. Fixes bugs 14752 and 15763.
Ondřej Bílka [Thu, 31 Oct 2013 12:58:01 +0000 (13:58 +0100)]
Restrict shm_open and shm_unlink to SHMDIR. Fixes bugs 14752 and 15763.

10 years agoFix BZ reference
Andreas Schwab [Thu, 31 Oct 2013 11:55:43 +0000 (12:55 +0100)]
Fix BZ reference

10 years agoRefill NEWS
Andreas Schwab [Thu, 31 Oct 2013 11:51:44 +0000 (12:51 +0100)]
Refill NEWS

10 years agoFix parsing of 0e+0 as float
Andreas Schwab [Thu, 31 Oct 2013 11:51:03 +0000 (12:51 +0100)]
Fix parsing of 0e+0 as float

10 years agoAccept make versions 4.0 and greater
Marc-Antoine Perennou [Thu, 31 Oct 2013 02:37:50 +0000 (12:37 +1000)]
Accept make versions 4.0 and greater

10 years agomalloc: Fix for infinite loop in memalign/posix_memalign.
Will Newton [Thu, 10 Oct 2013 12:17:13 +0000 (13:17 +0100)]
malloc: Fix for infinite loop in memalign/posix_memalign.

A very large alignment argument passed to mealign/posix_memalign
causes _int_memalign to enter an infinite loop. Limit the maximum
alignment value to the maximum representable power of two to
prevent this from happening.

Changelog:

2013-10-30  Will Newton  <will.newton@linaro.org>

[BZ #16038]
* malloc/hooks.c (memalign_check): Limit alignment to the
maximum representable power of two.
* malloc/malloc.c (__libc_memalign): Likewise.
* malloc/tst-memalign.c (do_test): Add test for very
large alignment values.
* malloc/tst-posix_memalign.c (do_test): Likewise.

10 years agoUse atomic operations to track memory. Fixes bug 11087
Ondřej Bílka [Wed, 30 Oct 2013 15:24:38 +0000 (16:24 +0100)]
Use atomic operations to track memory. Fixes bug 11087

10 years agoRemove code from div that is by C99 obsolete. Fixes bug 15799
Ondřej Bílka [Wed, 30 Oct 2013 15:07:15 +0000 (16:07 +0100)]
Remove code from div that is by C99 obsolete. Fixes bug 15799

10 years agoFix reads for sizes larger than INT_MAX in AF_INET lookup
Siddhesh Poyarekar [Wed, 30 Oct 2013 10:43:37 +0000 (16:13 +0530)]
Fix reads for sizes larger than INT_MAX in AF_INET lookup

Currently for AF_INET lookups from the hosts file, buffer sizes larger
than INT_MAX silently overflow and may result in access beyond bounds
of a buffer.  This happens when the number of results in an AF_INET
lookup in /etc/hosts are very large.

There are two aspects to the problem.  One problem is that the size
computed from the buffer size is stored into an int, which results in
overflow for large sizes.  Additionally, even if this size was
expanded, the function used to read content into the buffer (fgets)
accepts only int sizes.  As a result, the fix is to have a function
wrap around fgets that calls it multiple times with int sizes if
necessary.

10 years agoAdd ChangeLog entry and fix NEWS for #16078
Siddhesh Poyarekar [Wed, 30 Oct 2013 10:42:08 +0000 (16:12 +0530)]
Add ChangeLog entry and fix NEWS for #16078

10 years agoAdd missing bug number to NEWS
Allan McRae [Wed, 30 Oct 2013 10:15:10 +0000 (20:15 +1000)]
Add missing bug number to NEWS

10 years agoFix ChangeLog formatting issue
Allan McRae [Wed, 30 Oct 2013 10:12:59 +0000 (20:12 +1000)]
Fix ChangeLog formatting issue

10 years agorename configure.in to configure.ac
Mike Frysinger [Wed, 30 Oct 2013 03:20:52 +0000 (13:20 +1000)]
rename configure.in to configure.ac

Autoconf has been deprecating configure.in for quite a long time.
Rename all our configure.in and preconfigure.in files to .ac.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10 years agoLet tst-swscanf find its locale
Andreas Schwab [Tue, 29 Oct 2013 15:46:24 +0000 (16:46 +0100)]
Let tst-swscanf find its locale

10 years agoNew-locale-for-anp_IN
Chris Leonard [Tue, 29 Oct 2013 12:30:22 +0000 (08:30 -0400)]
New-locale-for-anp_IN

10 years agoBenchmark inputs for pow
Siddhesh Poyarekar [Mon, 28 Oct 2013 11:06:45 +0000 (16:36 +0530)]
Benchmark inputs for pow

These inputs cover all normal processing paths for pow including all
its slow paths.

10 years agoNew inputs for exp
Siddhesh Poyarekar [Mon, 28 Oct 2013 11:05:07 +0000 (16:35 +0530)]
New inputs for exp

A more comprehensive set of inputs for exp, including all slow paths.
The inputs have been shuffled so that they don't give a false-positive
due to a hot cache.

10 years agoConsolidate conditionals in mp sin/cos functions
Siddhesh Poyarekar [Mon, 28 Oct 2013 10:12:41 +0000 (15:42 +0530)]
Consolidate conditionals in mp sin/cos functions

Consolidate conditionals in multiple precision sin and cos functions
to prepare the code for addition of probe points.

10 years agoFix ChangeLog date.
Adhemerval Zanella [Mon, 28 Oct 2013 10:20:30 +0000 (08:20 -0200)]
Fix ChangeLog date.

10 years agoAdd some more NEWS items.
Joseph Myers [Sat, 26 Oct 2013 00:48:25 +0000 (00:48 +0000)]
Add some more NEWS items.

10 years agoPowerPC: strcpy/stpcpy optimization for PPC64/POWER7
Adhemerval Zanella [Thu, 26 Sep 2013 14:29:19 +0000 (09:29 -0500)]
PowerPC: strcpy/stpcpy optimization for PPC64/POWER7

This patch intends to unify both strcpy and stpcpy implementationsi
for PPC64 and PPC64/POWER7. The idead default powerpc64 implementation
is to provide both doubleword and word aligned memory access.

For PPC64/POWER7 is also provide doubleword and word memory access,
remove the branch hints, use the cmpb instruction for compare
doubleword/words, and add an optimization for inputs of same alignment.

10 years agoFix gethostbyname_r example. Fixes bug 2801.
Ondřej Bílka [Fri, 25 Oct 2013 17:16:08 +0000 (19:16 +0200)]
Fix gethostbyname_r example. Fixes bug 2801.

10 years agoChangelog for last commit.
Ondřej Bílka [Fri, 25 Oct 2013 17:15:14 +0000 (19:15 +0200)]
Changelog for last commit.

10 years agoMake strptime %Z consistent between doc and code. Fixes bug 14876
Ondřej Bílka [Fri, 25 Oct 2013 17:04:47 +0000 (19:04 +0200)]
Make strptime %Z consistent between doc and code. Fixes bug 14876

10 years agoAcknowledge that fnmatch can fail. Fixes bug 14029.
Ondřej Bílka [Fri, 25 Oct 2013 08:42:33 +0000 (10:42 +0200)]
Acknowledge that fnmatch can fail. Fixes bug 14029.

10 years agoDocument that mmap() returns MAP_FAILED on error, as per the POSIX standard.
Fabrice Bauzac [Fri, 25 Oct 2013 08:21:58 +0000 (13:51 +0530)]
Document that mmap() returns MAP_FAILED on error, as per the POSIX standard.

10 years agoFix stack overflow due to large AF_INET6 requests
Siddhesh Poyarekar [Fri, 25 Oct 2013 04:52:12 +0000 (10:22 +0530)]
Fix stack overflow due to large AF_INET6 requests

Resolves #16072 (CVE-2013-4458).

This patch fixes another stack overflow in getaddrinfo when it is
called with AF_INET6.  The AF_UNSPEC case was fixed as CVE-2013-1914,
but the AF_INET6 case went undetected back then.

10 years agoFix incorrect getaddrinfo assertion trigger
Allan McRae [Fri, 25 Oct 2013 04:25:38 +0000 (14:25 +1000)]
Fix incorrect getaddrinfo assertion trigger

[BZ #9954]

With the following /etc/hosts:
127.0.0.1       www.my-domain.es
127.0.1.1       www.my-domain.es
192.168.0.1     www.my-domain.es

Using getaddrinfo() on www.my-domain.es, trigger the following assertion:
../sysdeps/posix/getaddrinfo.c:1473: rfc3484_sort: Assertion
`src->results[i].native == -1 || src->results[i].native == a1_native' failed.

This is due to two different bugs:
- In rfc3484_sort() rule 7, src->results[i].native is assigned even if
src->results[i].index is -1, meaning that no interface is associated.
- In getaddrinfo() the source IP address used with the lo interface needs a
special case, as it can be any IP within 127.X.Y.Z.

10 years agoAdjust language-code fields of LC_ADDRESS.
Chris Leonard [Thu, 24 Oct 2013 15:43:38 +0000 (11:43 -0400)]
Adjust language-code fields of LC_ADDRESS.

10 years agoDocument rpcgen -5. Fixes bug 15825
Ondřej Bílka [Mon, 21 Oct 2013 07:58:03 +0000 (09:58 +0200)]
Document rpcgen -5. Fixes bug 15825

10 years agoPrint the reason why preloading failed in do_preload()
Michael Stahl [Sun, 20 Oct 2013 08:34:09 +0000 (10:34 +0200)]
Print the reason why preloading failed in do_preload()

10 years agoWhen glob pattern contains a trailing slash match only directories. Fixes bug 10278.
Ondřej Bílka [Sun, 20 Oct 2013 08:00:31 +0000 (10:00 +0200)]
When glob pattern contains a trailing slash match only directories. Fixes bug 10278.

10 years agoReplace alloca in __tzfile_read by malloc. Fixes bug 15670
Ondřej Bílka [Sun, 20 Oct 2013 06:25:25 +0000 (08:25 +0200)]
Replace alloca in __tzfile_read by malloc. Fixes bug 15670

10 years agoMention FIPS 140-2 compliance and Sun RPC.
Carlos O'Donell [Sat, 19 Oct 2013 04:11:31 +0000 (00:11 -0400)]
Mention FIPS 140-2 compliance and Sun RPC.

The Secure RPC implementation in glibc uses DES encryption
during authentication of the user. This use of DES means
that anyone using Sun RPC will likely not be compliant
with FIPS 140-2 which forbids the use of DES.

One solution to the compliance issue is to disable AUTH_DES
and AUTH_KERB, both use DES, when in FIPS compliance mode.
This is not a good idea because it disables all of the even
mildly secure methods of authentication allowing only plain
text methods.

Instead we leave AUTH_DES and AUTH_KERB enabled in FIPS
compliance mode and document the compliance issue in the
manual. FIPS allows this, that is to say that if you can't
fix it you must document the non-compliance.

This commit adds documentation to that effect in the
"DES encryption and password handling" section of the
manual.

10 years agoEnhance localedef --list-archive option.
Carlos O'Donell [Sat, 19 Oct 2013 03:41:30 +0000 (23:41 -0400)]
Enhance localedef --list-archive option.

The localedef --list-archive option claims that it can
accept a [file] argument and list the contents of that
archive. The support was never implemented. This patch
adds that support and allows --list-archive to work as
expected. You can now use localedef to list the contents
of arbitrary locale archives by using:
./localedef --list-archive file

10 years agoMove entries to correct port ChangeLog files.
Joseph Myers [Fri, 18 Oct 2013 21:28:57 +0000 (21:28 +0000)]
Move entries to correct port ChangeLog files.

10 years agoAdd e500 port.
Joseph Myers [Fri, 18 Oct 2013 21:03:40 +0000 (21:03 +0000)]
Add e500 port.

10 years agoRemove duplicate bug numbers from NEWS.
Joseph Myers [Fri, 18 Oct 2013 21:00:20 +0000 (21:00 +0000)]
Remove duplicate bug numbers from NEWS.

10 years agoFix localedef collation handling of <U0000> (bug 15948).
Richard Sandiford [Fri, 18 Oct 2013 20:58:31 +0000 (20:58 +0000)]
Fix localedef collation handling of <U0000> (bug 15948).

10 years agoDon't include tls.h in test cases
Siddhesh Poyarekar [Fri, 18 Oct 2013 14:15:36 +0000 (19:45 +0530)]
Don't include tls.h in test cases

Remove tls.h includes where they are not needed.

10 years agoRemove assert in malloc statistic. Fixes bug 12486.
Ondřej Bílka [Fri, 18 Oct 2013 07:32:35 +0000 (09:32 +0200)]
Remove assert in malloc statistic. Fixes bug 12486.

10 years agoFix inet_network("1 bar"). Fixes bug 15277.
Ondřej Bílka [Thu, 17 Oct 2013 16:33:58 +0000 (18:33 +0200)]
Fix inet_network("1 bar"). Fixes bug 15277.

10 years agoDon't use gethostbyaddr to determine canonical name
Andreas Schwab [Tue, 15 Oct 2013 08:21:13 +0000 (10:21 +0200)]
Don't use gethostbyaddr to determine canonical name

10 years agoFormat floating routines.
Ondřej Bílka [Thu, 17 Oct 2013 14:03:24 +0000 (16:03 +0200)]
Format floating routines.

10 years agosoft-fp: make extensions quiet signaling NaNs (bug 16041).
Joseph Myers [Thu, 17 Oct 2013 12:36:02 +0000 (12:36 +0000)]
soft-fp: make extensions quiet signaling NaNs (bug 16041).

10 years agosoft-fp: fix horizontal whitespace.
Joseph Myers [Wed, 16 Oct 2013 01:22:21 +0000 (01:22 +0000)]
soft-fp: fix horizontal whitespace.

10 years agosoft-fp: remove unused macros.
Joseph Myers [Tue, 15 Oct 2013 23:33:37 +0000 (23:33 +0000)]
soft-fp: remove unused macros.

10 years agoClear initfini list after freeing. Fixes bug 15308.
Ondřej Bílka [Tue, 15 Oct 2013 07:45:37 +0000 (09:45 +0200)]
Clear initfini list after freeing. Fixes bug 15308.

10 years agosoft-fp: fix vertical whitespace and indentation.
Joseph Myers [Tue, 15 Oct 2013 00:17:35 +0000 (00:17 +0000)]
soft-fp: fix vertical whitespace and indentation.

10 years agoFix error_tail overflow in allocation calculation.
Ondřej Bílka [Mon, 14 Oct 2013 15:15:08 +0000 (17:15 +0200)]
Fix error_tail overflow in allocation calculation.

10 years agoCorrectly copy resolver address. Fixes bug #13028.
Ondřej Bílka [Sun, 13 Oct 2013 21:03:28 +0000 (23:03 +0200)]
Correctly copy resolver address. Fixes bug #13028.

10 years agoldd: make try_trace more robust and portable
Patrick 'P. J.' McDermott [Thu, 12 Sep 2013 03:13:36 +0000 (23:13 -0400)]
ldd: make try_trace more robust and portable

It was noted in 2005 (BZ #832), 2006 (BZ #3266), and 2007 [1] that ldd
fails on shells other than Bash >= 3.0 because of the pipefail option
around try_trace (added on 2004-12-08).  EGLIBC was patched in 2008 [2]
(r6912) to make the pipefail check run only on shells that support it,
but RTLD output would still be lost on other shells with certain SELinux
policies.

This patch rewrites try_trace to work on any POSIX-conformant shell in
such a way as to also work with such SELinux policies.  It also obviates
one difference between glibc and EGLIBC.

URL: https://sourceware.org/ml/libc-alpha/2007-01/msg00041.html
URL: http://www.eglibc.org/archives/patches/msg00526.html

2013-09-11  P. J. McDermott  <pj@pehjota.net>

[BZ #832]
* elf/ldd.bash.in (try_trace): More robustly and portably work around
SELinux terminal write permissions by using a command substitution
instead of a pipeline and pipefail option.

10 years agoAdjust language-code fields of LC_ADDRESS.
Chris Leonard [Sun, 13 Oct 2013 12:37:42 +0000 (08:37 -0400)]
Adjust language-code fields of LC_ADDRESS.

10 years agosoft-fp: fix preprocessor indentation.
Joseph Myers [Sat, 12 Oct 2013 14:15:30 +0000 (14:15 +0000)]
soft-fp: fix preprocessor indentation.

10 years agoFix typos.
Yuri Chornoivan [Sat, 12 Oct 2013 12:21:55 +0000 (14:21 +0200)]
Fix typos.

10 years agoFix typo in setlocale.c. Fixes BZ #15764
Reuben Thomas [Sat, 12 Oct 2013 12:07:25 +0000 (14:07 +0200)]
Fix typo in setlocale.c. Fixes BZ #15764

10 years agosoft-fp: make __unord* raise "invalid" for signaling NaNs (bug 16036).
Joseph Myers [Sat, 12 Oct 2013 12:23:28 +0000 (12:23 +0000)]
soft-fp: make __unord* raise "invalid" for signaling NaNs (bug 16036).

10 years agosoft-fp: make ordered comparisons raise "invalid" for quiet NaNs (bug 14910).
Joseph Myers [Sat, 12 Oct 2013 12:22:14 +0000 (12:22 +0000)]
soft-fp: make ordered comparisons raise "invalid" for quiet NaNs (bug 14910).

10 years agosoft-fp: add missing FP_INIT_EXCEPTIONS and FP_INIT_ROUNDMODE calls.
Joseph Myers [Sat, 12 Oct 2013 12:21:04 +0000 (12:21 +0000)]
soft-fp: add missing FP_INIT_EXCEPTIONS and FP_INIT_ROUNDMODE calls.

10 years agosoft-fp: add macro FP_NO_EXCEPTIONS.
Joseph Myers [Sat, 12 Oct 2013 12:20:12 +0000 (12:20 +0000)]
soft-fp: add macro FP_NO_EXCEPTIONS.

10 years agosoft-fp: fix _FP_DIV_MEAT_* returning results with wrong exponent (bug 16032).
Joseph Myers [Sat, 12 Oct 2013 12:18:55 +0000 (12:18 +0000)]
soft-fp: fix _FP_DIV_MEAT_* returning results with wrong exponent (bug 16032).

10 years agosoft-fp: fix floating-point to integer unsigned saturation.
Joseph Myers [Sat, 12 Oct 2013 12:17:16 +0000 (12:17 +0000)]
soft-fp: fix floating-point to integer unsigned saturation.

10 years agoAdd systemtap markers to math function slow paths
Siddhesh Poyarekar [Fri, 11 Oct 2013 17:07:53 +0000 (22:37 +0530)]
Add systemtap markers to math function slow paths

Add systemtap probes to various slow paths in libm so that application
developers may use systemtap to find out if their applications are
hitting these slow paths.  We have added probes for pow, exp, log,
tan, atan and atan2.

10 years agoFix fwrite() reading beyond end of buffer in error path
Eric Biggers [Fri, 11 Oct 2013 16:59:38 +0000 (22:29 +0530)]
Fix fwrite() reading beyond end of buffer in error path

Partially revert commits 2b766585f9b4ffabeef2f36200c275976b93f2c7 and
de2fd463b1c0310d75084b6d774fb974075a4ad9, which were intended to fix BZ#11741
but caused another, likely worse bug, namely that fwrite() and fputs() could,
in an error path, read data beyond the end of the specified buffer, and
potentially even write this data to the file.

Fix BZ#11741 properly by checking the return value from _IO_padn() in
stdio-common/vfprintf.c.

10 years agoFix readdir regressions on sparc 32-bit.
David S. Miller [Fri, 11 Oct 2013 05:32:36 +0000 (22:32 -0700)]
Fix readdir regressions on sparc 32-bit.

* sysdeps/posix/dirstream.h (struct __dirstream): Fix alignment of
directory block.

10 years agoUpdate copyright and license notices in soft-fp files from libgcc.
Joseph Myers [Thu, 10 Oct 2013 23:58:13 +0000 (23:58 +0000)]
Update copyright and license notices in soft-fp files from libgcc.

10 years agoAdd soft-fp files from libgcc.
Joseph Myers [Thu, 10 Oct 2013 23:57:22 +0000 (23:57 +0000)]
Add soft-fp files from libgcc.

10 years agoUpdate sparc ULPs.
David S. Miller [Wed, 9 Oct 2013 22:25:52 +0000 (15:25 -0700)]
Update sparc ULPs.

* sysdeps/sparc/fpu/libm-test-ulps: Update.

10 years agoExtend powerpc-nofpu -fno-builtin-fabsl workaround to more files.
Joseph Myers [Thu, 10 Oct 2013 19:12:09 +0000 (19:12 +0000)]
Extend powerpc-nofpu -fno-builtin-fabsl workaround to more files.

10 years agoAvoid ordered comparisons of NaNs in ldbl-128ibm acosl and asinl.
Joseph Myers [Thu, 10 Oct 2013 19:11:30 +0000 (19:11 +0000)]
Avoid ordered comparisons of NaNs in ldbl-128ibm acosl and asinl.

10 years agomalloc/hooks.c: Correct check for overflow in memalign_check.
Will Newton [Wed, 9 Oct 2013 13:41:57 +0000 (14:41 +0100)]
malloc/hooks.c: Correct check for overflow in memalign_check.

A large value of bytes passed to memalign_check can cause an integer
overflow in _int_memalign and heap corruption. This issue can be
exposed by running tst-memalign with MALLOC_CHECK_=3.

ChangeLog:

2013-10-10  Will Newton  <will.newton@linaro.org>

* malloc/hooks.c (memalign_check): Ensure the value of bytes
passed to _int_memalign does not overflow.

10 years agobenchtests: Add include-sources directive.
Torvald Riegel [Tue, 8 Oct 2013 11:04:10 +0000 (14:04 +0300)]
benchtests: Add include-sources directive.

This adds the "include-sources" directive to scripts/bench.pl.  This
allows for including source code (vs including headers, which might get
a different search path) after the inclusion of any headers.

10 years agosoft-fp: split FP_INIT_EXCEPTIONS from FP_INIT_ROUNDMODE.
Joseph Myers [Thu, 10 Oct 2013 11:40:25 +0000 (11:40 +0000)]
soft-fp: split FP_INIT_EXCEPTIONS from FP_INIT_ROUNDMODE.

10 years agosoft-fp: fix negation NaN handling (bug 16034).
Joseph Myers [Thu, 10 Oct 2013 11:38:56 +0000 (11:38 +0000)]
soft-fp: fix negation NaN handling (bug 16034).

10 years agosoft-fp: Remove trailing semicolon from _FP_FRAC_DISASSEMBLE_4.
Joseph Myers [Wed, 9 Oct 2013 19:23:05 +0000 (19:23 +0000)]
soft-fp: Remove trailing semicolon from _FP_FRAC_DISASSEMBLE_4.

10 years agosoft-fp: fix typo in comment.
Adam Buchbinder [Wed, 9 Oct 2013 19:20:48 +0000 (19:20 +0000)]
soft-fp: fix typo in comment.

10 years agoUpdate gethostbyname2_r documentation. Fixes bug #156.
Yogesh Chaudhari [Tue, 8 Oct 2013 19:42:42 +0000 (21:42 +0200)]
Update gethostbyname2_r documentation. Fixes bug #156.

10 years agoFix typo in last change
Andreas Schwab [Tue, 8 Oct 2013 19:24:56 +0000 (21:24 +0200)]
Fix typo in last change

10 years agom68k: use PIC for Scrt1.o
Andreas Schwab [Tue, 8 Oct 2013 18:59:47 +0000 (20:59 +0200)]
m68k: use PIC for Scrt1.o

10 years agoUse p2align instead ALIGN
Ondřej Bílka [Tue, 8 Oct 2013 13:46:48 +0000 (15:46 +0200)]
Use p2align instead ALIGN

10 years agocorrect LC_TELEPHONE for pap locales
Chris Leonard [Tue, 8 Oct 2013 11:34:10 +0000 (07:34 -0400)]
correct LC_TELEPHONE for pap locales

10 years agoFormat e_pow.c
Siddhesh Poyarekar [Tue, 8 Oct 2013 10:53:16 +0000 (16:23 +0530)]
Format e_pow.c

10 years agoFormat e_exp.c
Siddhesh Poyarekar [Tue, 8 Oct 2013 10:52:28 +0000 (16:22 +0530)]
Format e_exp.c

10 years agoConsolidate multiple precision sin/cos functions
Siddhesh Poyarekar [Tue, 8 Oct 2013 06:20:17 +0000 (11:50 +0530)]
Consolidate multiple precision sin/cos functions

10 years agoClean up locale file alignment handling.
Joseph Myers [Tue, 8 Oct 2013 00:14:08 +0000 (00:14 +0000)]
Clean up locale file alignment handling.