]> git.ipfire.org Git - thirdparty/glibc.git/log
thirdparty/glibc.git
11 years agoNEWS: Add 16885 to fixed bug list. release/2.15/master
David S. Miller [Thu, 1 May 2014 20:42:27 +0000 (16:42 -0400)] 
NEWS: Add 16885 to fixed bug list.

11 years agoFix v9/64-bit strcmp when string ends in multiple zero bytes.
David S. Miller [Wed, 30 Apr 2014 19:57:51 +0000 (12:57 -0700)] 
Fix v9/64-bit strcmp when string ends in multiple zero bytes.

[BZ #16885]
* sysdeps/sparc/sparc64/strcmp.S: Fix end comparison handling when
multiple zero bytes exist at the end of a string.
Reported by Aurelien Jarno <aurelien@aurel32.net>

* string/test-strcmp.c (check): Add explicit test for situations where
there are multiple zero bytes after the first.

11 years ago[PATCH] Make sunrpc code usable again
Carlos O'Donell [Thu, 30 Jan 2014 20:03:04 +0000 (15:03 -0500)] 
[PATCH] Make sunrpc code usable again

New configure option --enable-obsolete-rpc makes the deprecated RPC
headers and functions available at compile time as they were before
version 2.14.  This option will be removed at some time in the future
after the TI-RPC library becomes fully sufficient for the needs of
existing applications.

(cheery pick from commit 82071029502b354886f86e315c230b808d99afc2)

11 years agoDon't parse %s format argument as multibyte string
Carlos O'Donell [Thu, 30 Jan 2014 18:19:58 +0000 (13:19 -0500)] 
Don't parse %s format argument as multibyte string

2012-09-28  Andreas Schwab  <schwab@linux-m68k.org>

            [BZ #6530]
            * stdio-common/vfprintf.c (process_string_arg): Revert
            2000-07-22 change.

2011-09-28  Jonathan Nieder  <jrnieder@gmail.com>

            * stdio-common/Makefile (tst-sprintf-ENV): Set environment
            for testcase.
            * stdio-common/tst-sprintf.c: Include <locale.h>
            (main): Test sprintf's handling of incomplete multibyte
            characters.

(cherry picked from commit 715a900c9085907fa749589bf738b192b1a2bda5)

11 years agoFix invalid memory access in do_lookup_x.
Andreas Schwab [Fri, 22 Jun 2012 18:10:31 +0000 (11:10 -0700)] 
Fix invalid memory access in do_lookup_x.

[BZ #13579] Do not free l_initfini and allow it to be reused
on subsequent dl_open calls for the same library. This fixes
the invalid memory access in do_lookup_x when the previously
free'd l_initfini was accessed through l_searchlist when a
library had been opened for the second time.

(cherry picked from commit 0479b305c5b7c8e3fa8e3002982cf8cac02b842e)

11 years agoFix locking in fmtmsg
Ulrich Drepper [Sat, 25 Feb 2012 02:18:04 +0000 (21:18 -0500)] 
Fix locking in fmtmsg

(cherry picked from commit 7724defcf8873116fe4efab256596861eef21a94)

11 years agoSort objects before relocations
Ulrich Drepper [Fri, 27 Jan 2012 20:05:19 +0000 (15:05 -0500)] 
Sort objects before relocations

(cherry picked from commit 6ee65ed6ddbf04402fad0bec6aa9c73b9d982ae4)

11 years agoFix race in free() of fastbin chunk: BZ #15073
Maxim Kuvyrkov [Mon, 23 Dec 2013 20:44:50 +0000 (09:44 +1300)] 
Fix race in free() of fastbin chunk: BZ #15073

Perform sanity check only if we have_lock.  Due to lockless nature of fastbins
we need to be careful derefencing pointers to fastbin entries (chunksize(old)
in this case) in multithreaded environments.

The fix is to add have_lock to the if-condition checks.  The rest of the patch
only makes code more readable.

* malloc/malloc.c (_int_free): Perform sanity check only if we
have_lock.

Conflicts:

ChangeLog
NEWS

11 years agoAdd 13773 to NEWS for 2.15.1.
Chris Metcalf [Mon, 23 Sep 2013 16:03:08 +0000 (12:03 -0400)] 
Add 13773 to NEWS for 2.15.1.

11 years agoCall __fxstatat64 from faccessat() to avoid PLT in -Os builds.
Chris Metcalf [Sat, 28 Jan 2012 17:07:46 +0000 (12:07 -0500)] 
Call __fxstatat64 from faccessat() to avoid PLT in -Os builds.

(cherry picked from commit 3601428fb029e1c6e98d409dad64d709972cdf57)

12 years agoAdd 11261 and 13754 to NEWS for 2.15.1.
Carlos O'Donell [Sun, 17 Mar 2013 22:14:22 +0000 (18:14 -0400)] 
Add 11261 and 13754 to NEWS for 2.15.1.

12 years agoFix missing nearbyintl@GLIBC_2.1 on powerpc
Andreas Schwab [Mon, 30 Apr 2012 23:10:20 +0000 (01:10 +0200)] 
Fix missing nearbyintl@GLIBC_2.1 on powerpc
(cherry picked from commit 412bd96612ff5422befb98e990b66d10c26a4b21)

12 years agoRevert "2012-11-07 Andreas Jaeger <aj@suse.de>"
Andreas Schwab [Tue, 27 Nov 2012 15:45:53 +0000 (16:45 +0100)] 
Revert "2012-11-07  Andreas Jaeger  <aj@suse.de>"

This reverts commit fc8c942ba4e4b41a0f1a62f6c22062596346b02c.

The issue has been fixed in the kernel.

12 years ago2012-11-07 Andreas Jaeger <aj@suse.de>
Jeff Law [Wed, 7 Nov 2012 18:58:37 +0000 (11:58 -0700)] 
2012-11-07  Andreas Jaeger  <aj@suse.de>

        [BZ #14809]
        * sysdeps/unix/sysv/linux/sys/sysctl.h (_UAPI_LINUX_KERNEL_H)
        (_UAPI_LINUX_TYPES_H): Starting with Linux 3.7, the include header
        guards are changed.  Only define if not yet defined, #undef back
        after including linux/sysctl.h if defined here.
(cherry picked from commit 01f34a3bd8c087ca4be0bd24857e454c8d29f20b)

Conflicts:
ChangeLog
NEWS

12 years agoDefine HAS_FMA with bit_FMA_Usable
H.J. Lu [Tue, 2 Oct 2012 12:05:17 +0000 (05:05 -0700)] 
Define HAS_FMA with bit_FMA_Usable

cherry-pick 0569936773c861c791f10bba5e2f4cac5fbb4e78

Conflicts:
ChangeLog
NEWS

12 years agoUse size_t instead of int for internal variables in glob (bug 14621).
Joseph Myers [Tue, 25 Sep 2012 19:38:15 +0000 (19:38 +0000)] 
Use size_t instead of int for internal variables in glob (bug 14621).
(cherry picked from commit b87c4b24d97321ef2f2da357f8fcf11f1f61e3dc)

Conflicts:

ChangeLog

12 years agoFix strtod integer/buffer overflow (bug 14459).
Joseph Myers [Mon, 27 Aug 2012 15:59:24 +0000 (15:59 +0000)] 
Fix strtod integer/buffer overflow (bug 14459).
(cherry picked from commit d6e70f4368533224e66d10b7f2126b899a3fd5e4)

Conflicts:

ChangeLog
NEWS
stdlib/Makefile

13 years agoCall __fxstatat64 from faccessat() to avoid PLT in -Os builds.
Chris Metcalf [Sat, 28 Jan 2012 17:07:46 +0000 (12:07 -0500)] 
Call __fxstatat64 from faccessat() to avoid PLT in -Os builds.

(cherry picked from commit 3601428fb029e1c6e98d409dad64d709972cdf57)

13 years agoUse include/sys/epoll.h to provide libc_hidden_proto for epoll_pwait().
Chris Metcalf [Sat, 28 Jan 2012 17:00:12 +0000 (12:00 -0500)] 
Use include/sys/epoll.h to provide libc_hidden_proto for epoll_pwait().

(cherry picked from commit 463de8625241174b25e339c119d7c59e79b474ec)

13 years agoUse <> brackets for not-cancel.h in sysdeps/unix/sysv/linux/grantpt.c.
Chris Metcalf [Sat, 28 Jan 2012 16:51:44 +0000 (11:51 -0500)] 
Use <> brackets for not-cancel.h in sysdeps/unix/sysv/linux/grantpt.c.

(cherry picked from commit 540d7568aefbc870e8f618905cfbc38f9e6fcc61)

13 years agoUpdate config.guess, config.sub from upstream config git repository.
Chris Metcalf [Sun, 29 Jan 2012 18:36:30 +0000 (13:36 -0500)] 
Update config.guess, config.sub from upstream config git repository.

(cherry picked from commit 607998afaa2a06d3756763ef6f0c2c835ce058db)

13 years agoAdd Tile relocation types.
Chris Metcalf [Sat, 28 Jan 2012 16:28:23 +0000 (11:28 -0500)] 
Add Tile relocation types.

(cherry picked from commit 3ac8b282b684e302640e1fee5d6cdbdd0d3255fb)

13 years agoFix wordsize-64 cosh regression (bug 14273).
Joseph Myers [Thu, 21 Jun 2012 19:26:09 +0000 (19:26 +0000)] 
Fix wordsize-64 cosh regression (bug 14273).
(cherry picked from commit b7abb4bf78443f4f8d05a9dfa768fdee65b99d42)

13 years agoFix for wrong ldbl128-ibm fmodl commit
Adhemerval Zanella [Wed, 6 Jun 2012 00:31:24 +0000 (21:31 -0300)] 
Fix for wrong ldbl128-ibm fmodl commit
(cherry picked from commit 1b671feb6115afbc90a7b37be4929d3e0394f311)

13 years agoFix ldbl128ibm fmodl for subnormals.
Adhemerval Zanella [Tue, 5 Jun 2012 13:13:41 +0000 (10:13 -0300)] 
Fix ldbl128ibm fmodl for subnormals.
(cherry picked from commit 34ae0b3270c67cae0c54ac98b693fdf7d010a206)

13 years agoFix fmod for subnormals (bug 14048).
Joseph Myers [Fri, 1 Jun 2012 19:05:46 +0000 (19:05 +0000)] 
Fix fmod for subnormals (bug 14048).
(cherry picked from commit c5bfe3d5ba29d36563f1e4bd4f8d7336093ee6fc)

13 years agoFix x86 strcasecmp_l (bug 13786).
Joseph Myers [Wed, 29 Feb 2012 22:37:38 +0000 (22:37 +0000)] 
Fix x86 strcasecmp_l (bug 13786).
(cherry picked from commit 0bab47b6b255e77bd69206ab0dcfa97331fefa50)

13 years agoRegenerate libc.pot.
Carlos O'Donell [Sun, 24 Jun 2012 22:22:39 +0000 (22:22 +0000)] 
Regenerate libc.pot.

Enhance scripts/list-sources.sh to search glibc-ports
for translatable strings.

(backported from trunk)

13 years agoSet default charset to UTF-8 for libc.pot.
Carlos O'Donell [Wed, 13 Jun 2012 23:50:29 +0000 (16:50 -0700)] 
Set default charset to UTF-8 for libc.pot.

(cherry picked from commit 771766df5ad38fdce118d4b3a4a7a7825e19fb96)

13 years agoBackport LIBC_TRY_CC_OPTION and regenerate configure scripts.
Joseph Myers [Thu, 21 Jun 2012 15:25:20 +0000 (15:25 +0000)] 
Backport LIBC_TRY_CC_OPTION and regenerate configure scripts.

13 years agoAdd BZ#14167 to NEWS.
Carlos O'Donell [Wed, 30 May 2012 03:07:42 +0000 (23:07 -0400)] 
Add BZ#14167 to NEWS.

13 years agoDisable use of FMA instructions in branred
Andreas Schwab [Fri, 16 Mar 2012 15:07:57 +0000 (16:07 +0100)] 
Disable use of FMA instructions in branred

(cherry picked from commit 7998fa7899a29803ad4512002636332dfee48451)

13 years agoFix makefile/configure problems with sse2avx changes.
Joseph Myers [Mon, 30 Jan 2012 19:55:15 +0000 (19:55 +0000)] 
Fix makefile/configure problems with sse2avx changes.

(cherry picked from commit 3b1004624e54cc2fefd034ff80d5dea4b6db764f)

13 years agoUse -msse2avx option for x86-64 libm functions
Ulrich Drepper [Sat, 28 Jan 2012 19:48:46 +0000 (14:48 -0500)] 
Use -msse2avx option for x86-64 libm functions

(cherry picked from commit 56f6f6a2403cfa7267cad722597113be35ecf70d)

13 years agoHandle ARENA_TEST correctly
Ulrich Drepper [Tue, 31 Jan 2012 19:42:34 +0000 (14:42 -0500)] 
Handle ARENA_TEST correctly

(cherry picked from commit 41b81892f11fe1353123e892158b53de73863d62)

13 years agoFix bug in firstversions.awk version range handling.
Chris Metcalf [Sat, 28 Jan 2012 17:02:44 +0000 (12:02 -0500)] 
Fix bug in firstversions.awk version range handling.

(cherry picked from commit e034841eac8e96fa255c52864be06352ee7981ae)

13 years agoFixed BZ#13774.
Carlos O'Donell [Fri, 18 May 2012 21:30:08 +0000 (17:30 -0400)] 
Fixed BZ#13774.

13 years agoBZ#14059: Fix AVX and FMA4 detection.
Carlos O'Donell [Thu, 17 May 2012 03:14:24 +0000 (20:14 -0700)] 
BZ#14059: Fix AVX and FMA4 detection.

Fix AVX and FMA4 detection by following the guidelines
set out by Intel and AMD for detecting these features.

(cherry picked from commit 1a0994f5356214e8af8a1c1cc33fbf74a7ac8993)

13 years agoReally fix AVX tests
Ulrich Drepper [Thu, 26 Jan 2012 14:45:54 +0000 (09:45 -0500)] 
Really fix AVX tests

There is no problem with strcmp, it doesn't use the YMM registers.
The math routines might since gcc perhaps generates such code.
Introduce bit_YMM_USBALE and use it in the math routines.

(cherry picked from commit 08cf777f9e7f6d826658a99c7d77a359f73a45bf)

13 years agoReset bit_AVX in __cpu_features is OS support is missing
Ulrich Drepper [Thu, 26 Jan 2012 12:45:14 +0000 (07:45 -0500)] 
Reset bit_AVX in __cpu_features is OS support is missing

(cherry picked from commit afc5ed09cbce5d6fd48b3a8c5ec427b31f996880)

13 years agoUse <> for include of kernel-features.h.
Richard Henderson [Thu, 9 Feb 2012 19:21:47 +0000 (11:21 -0800)] 
Use <> for include of kernel-features.h.

(cherry-picked from commit af850b1c978bdca648ef9fb141e785d75f74d9bf)

13 years agoAdd O_FSYNC define to sparc just like other platforms.
David S. Miller [Thu, 16 Feb 2012 22:56:54 +0000 (14:56 -0800)] 
Add O_FSYNC define to sparc just like other platforms.

(cherry-picked from commit fb59b3a4f54777652dc877a1df0fcc009b741d87)

13 years agoFix ldbl-128 rintl/nearbyintl just like flt-32 variants.
David S. Miller [Mon, 27 Feb 2012 22:51:45 +0000 (14:51 -0800)] 
Fix ldbl-128 rintl/nearbyintl just like flt-32 variants.

* sysdeps/ieee754/ldbl-128/s_nearbyintl.c (__nearbyintl): Do not
manipulate bits before adding and subtracting TWO112[sx].
* sysdeps/ieee754/ldbl-128/s_rintl.c (__rintl): Likewise.

(cherry-picked from commit a78bc6549cfedeea0828b718aca00593d8164c2b)

13 years agoFix rintf rounding.
Joseph Myers [Wed, 22 Feb 2012 13:01:20 +0000 (13:01 +0000)] 
Fix rintf rounding.

(cherry-picked from commit fe45ce09f366f2260aef528d37ae35070b3a2a36)

13 years agoFix nearbyintf rounding.
Joseph Myers [Wed, 22 Feb 2012 13:03:40 +0000 (13:03 +0000)] 
Fix nearbyintf rounding.

(cherry-picked from commit 6cbeae4719aeb3edb6143fe5dd6d2a5ab45c0248)

13 years agoUse non-signaling floating-point comparisons in math functions.
Aurelien Jarno [Sun, 19 Feb 2012 10:20:18 +0000 (11:20 +0100)] 
Use non-signaling floating-point comparisons in math functions.

(cherry-picked from commit 92221550d72bafcd322ac5ab2a951054184b7f1a)

13 years agoAdd NEWS section for upcoming 2.15.1 release.
Carlos O'Donell [Mon, 23 Apr 2012 13:14:44 +0000 (09:14 -0400)] 
Add NEWS section for upcoming 2.15.1 release.

Leave bugs fixed section for 2.15 as-is.

Add newly fixed bugs to the 2.15.1 section.

13 years agoFix merge conflict for sparc32/sparc64 ULPS.
Carlos O'Donell [Sun, 22 Apr 2012 23:52:06 +0000 (19:52 -0400)] 
Fix merge conflict for sparc32/sparc64 ULPS.

13 years agoUpdate NEWS with BZ #13731.
Carlos O'Donell [Sun, 22 Apr 2012 23:48:09 +0000 (19:48 -0400)] 
Update NEWS with BZ #13731.

13 years agoUpdate long-double sparc math ULPs missed by previous changes.
David S. Miller [Tue, 21 Feb 2012 23:36:11 +0000 (15:36 -0800)] 
Update long-double sparc math ULPs missed by previous changes.

* sysdeps/sparc/sparc32/fpu/libm-test-ulps: More jn test ULP updates.
* sysdeps/sparc/sparc64/fpu/libm-test-ulps: Likewise.

(cherry picked from commit 586394099c34491f5488ee4b777668e05df7000d)

13 years agoReduce ldouble ULPs for jn tests on x86
Andreas Schwab [Wed, 8 Feb 2012 21:20:40 +0000 (22:20 +0100)] 
Reduce ldouble ULPs for jn tests on x86

(cherry picked from commit 06b99b02639bd0cb3755c59bd17bd5af32fe8535)

13 years agoFix loss of precision in jn tests
Andreas Schwab [Tue, 7 Feb 2012 14:14:47 +0000 (15:14 +0100)] 
Fix loss of precision in jn tests

(cherry picked from commit cfdc0dd7fa4616e1c948760bf7dd7b3eddd6a53b)

13 years agoCleanup trailing whitespace in NEWS.
Carlos O'Donell [Sun, 22 Apr 2012 19:39:37 +0000 (15:39 -0400)] 
Cleanup trailing whitespace in NEWS.

13 years agoUpdate NEWS with BZ #13748.
Carlos O'Donell [Sun, 22 Apr 2012 19:34:10 +0000 (15:34 -0400)] 
Update NEWS with BZ #13748.

13 years agoFix x86 PLT slot usage for feraiseexcept.
Thomas Schwinge [Fri, 10 Feb 2012 20:05:54 +0000 (21:05 +0100)] 
Fix x86 PLT slot usage for feraiseexcept.

Then we're elf/check-localplt.out-clean again.

13 years agoRedefine __i686 for use with older compilers.
Carlos O'Donell [Sun, 22 Apr 2012 16:06:09 +0000 (12:06 -0400)] 
Redefine __i686 for use with older compilers.

This is a conservative fix for BZ #411 which is already fixed
on trunk. In this fix we don't touch any of the thunks or
do any other work other than to redefine the compiler define.
This is the minimum change required to build on a broader range
of distributions.

13 years agoAlso update new programs
Ulrich Drepper [Sun, 1 Jan 2012 12:16:32 +0000 (07:16 -0500)] 
Also update new programs

13 years agoUpdate copyright year
Ulrich Drepper [Sun, 1 Jan 2012 10:50:05 +0000 (05:50 -0500)] 
Update copyright year

13 years agoFix up regcomp/regexec
Jakub Jelinek [Fri, 30 Dec 2011 22:13:56 +0000 (17:13 -0500)] 
Fix up regcomp/regexec

The problem is that parse_bracket_symbol is miscompiled, and it turns
out it is because of an incorrect attribute on re_string_fetch_byte_case.
Unlike re_string_peek_byte_case, this one is really not pure, it modifies memory
(increments pstr->cur_idx), and with the pure attribute GCC assumed it doesn't
and it cached the presumed value of regexp->cur_idx in a variable across the
 for (;; ++i)
   {
     if (i >= BRACKET_NAME_BUF_SIZE)
       return REG_EBRACK;
     if (token->type == OP_OPEN_CHAR_CLASS)
       ch = re_string_fetch_byte_case (regexp);
     else
       ch = re_string_fetch_byte (regexp);
     if (re_string_eoi(regexp))
       return REG_EBRACK;
     if (ch == delim && re_string_peek_byte (regexp, 0) == ']')
       break;
     elem->opr.name[i] = ch;
   }

13 years agoPreliminaries for 2.15 release glibc-2.15
Ulrich Drepper [Fri, 23 Dec 2011 19:03:55 +0000 (14:03 -0500)] 
Preliminaries for 2.15 release

13 years agoFix typos in comments
Marek Polacek [Fri, 23 Dec 2011 18:59:40 +0000 (13:59 -0500)] 
Fix typos in comments

13 years agoPrevent warnings due to long long constants
Ulrich Drepper [Fri, 23 Dec 2011 18:52:59 +0000 (13:52 -0500)] 
Prevent warnings due to long long constants

13 years agoCL
Liubov Dmitrieva [Fri, 23 Dec 2011 17:02:53 +0000 (12:02 -0500)] 
CL

13 years agoFix overrun in destination buffer
Liubov Dmitrieva [Fri, 23 Dec 2011 17:02:15 +0000 (12:02 -0500)] 
Fix overrun in destination buffer

13 years agoAdd missing inline keyword
Marek Polacek [Fri, 23 Dec 2011 16:19:53 +0000 (11:19 -0500)] 
Add missing inline keyword

According to http://gcc.gnu.org/ml/gcc-patches/2011-09/msg00608.html,
a function without `inline' with an `always_inline' attribute is a bug.

13 years agoAdd another BZ
Ulrich Drepper [Fri, 23 Dec 2011 16:01:46 +0000 (11:01 -0500)] 
Add another BZ

13 years agoModernize time format in Swedish locale
Ulrich Drepper [Fri, 23 Dec 2011 15:57:04 +0000 (10:57 -0500)] 
Modernize time format in Swedish locale

13 years agoFix wal_ET locale and build it
Ulrich Drepper [Fri, 23 Dec 2011 15:04:30 +0000 (10:04 -0500)] 
Fix wal_ET locale and build it

13 years agoVarious fixes to fi_FI
Ulrich Drepper [Fri, 23 Dec 2011 14:51:10 +0000 (09:51 -0500)] 
Various fixes to fi_FI

13 years agoOptimize x86-32 feraiseexcept also for !__SSE_MATH__
Ulrich Drepper [Fri, 23 Dec 2011 14:18:02 +0000 (09:18 -0500)] 
Optimize x86-32 feraiseexcept also for !__SSE_MATH__

13 years agoFix wrong copying processing for last bytes in x86-32 wcscpy
Liubov Dmitrieva [Fri, 23 Dec 2011 13:50:39 +0000 (08:50 -0500)] 
Fix wrong copying processing for last bytes in x86-32 wcscpy

Wrong copy algorithm for last bytes, not thread safety.
In some particular cases it uses the destination
memory beyond the string end for
16-byte load, puts changes into that part that is relevant
to destination string and writes whole 16-byte chunk into memory.
I have a test case where the memory beyond the string end contains
malloc/free data, that appear corrupted in case free() updates
it in between the 16-byte read and 16-byte write.

13 years agoiconv mapping of 0xA8 0xEC in CP1258 is non-canonical
Bruno Haible [Fri, 23 Dec 2011 13:43:41 +0000 (08:43 -0500)] 
iconv mapping of 0xA8 0xEC in CP1258 is non-canonical

13 years agoiconv mapping of U+0385 in TCVN5712-1 is incorrect
Bruno Haible [Fri, 23 Dec 2011 13:35:09 +0000 (08:35 -0500)] 
iconv mapping of U+0385 in TCVN5712-1 is incorrect

13 years agoAdd ta_LK locale
Ulrich Drepper [Fri, 23 Dec 2011 13:26:58 +0000 (08:26 -0500)] 
Add ta_LK locale

13 years agoUse __pthread_get_minstack in more places
Ulrich Drepper [Fri, 23 Dec 2011 03:58:17 +0000 (22:58 -0500)] 
Use __pthread_get_minstack in more places

13 years agoCreate internal threads with sufficient stack size
Ulrich Drepper [Fri, 23 Dec 2011 03:43:39 +0000 (22:43 -0500)] 
Create internal threads with sufficient stack size

13 years agoFix fi_FI collation reordering
Ulrich Drepper [Fri, 23 Dec 2011 02:23:33 +0000 (21:23 -0500)] 
Fix fi_FI collation reordering

13 years agoFix error code for too small input buffer to getnameinfo
Ulrich Drepper [Fri, 23 Dec 2011 00:21:36 +0000 (19:21 -0500)] 
Fix error code for too small input buffer to getnameinfo

13 years agoAdd missing BZ
Ulrich Drepper [Thu, 22 Dec 2011 23:02:50 +0000 (18:02 -0500)] 
Add missing BZ

13 years agoAdd feraiseexcept optimization for x86-32
Ulrich Drepper [Thu, 22 Dec 2011 22:52:30 +0000 (17:52 -0500)] 
Add feraiseexcept optimization for x86-32

13 years agoAlso retrieve SSE exceptions in x86-32 fegetexceptflag
Ulrich Drepper [Thu, 22 Dec 2011 21:28:08 +0000 (16:28 -0500)] 
Also retrieve SSE exceptions in x86-32 fegetexceptflag

13 years agoBuild ur_IN locale
Ulrich Drepper [Thu, 22 Dec 2011 20:07:28 +0000 (15:07 -0500)] 
Build ur_IN locale

13 years agoMerge branch 'master' of ssh://sourceware.org/git/glibc
Ulrich Drepper [Thu, 22 Dec 2011 19:23:28 +0000 (14:23 -0500)] 
Merge branch 'master' of ssh://sourceware.org/git/glibc

Conflicts:
ChangeLog

13 years agoFix overrun in strcpy destination buffer in x86-32/SSSE3 version
Liubov Dmitrieva [Thu, 22 Dec 2011 19:22:00 +0000 (14:22 -0500)] 
Fix overrun in strcpy destination buffer in x86-32/SSSE3 version

13 years agoSupport building bits/syscall.h for any number of subarch variants.
Joseph Myers [Thu, 22 Dec 2011 18:22:50 +0000 (18:22 +0000)] 
Support building bits/syscall.h for any number of subarch variants.

13 years agoAdd brx_IN locale
Ulrich Drepper [Thu, 22 Dec 2011 16:50:52 +0000 (11:50 -0500)] 
Add brx_IN locale

13 years agoOptimize tr_freehook
Ulrich Drepper [Thu, 22 Dec 2011 16:38:32 +0000 (11:38 -0500)] 
Optimize tr_freehook

13 years agoChange currency symbol placement for nl_BE
Ulrich Drepper [Thu, 22 Dec 2011 16:30:06 +0000 (11:30 -0500)] 
Change currency symbol placement for nl_BE

13 years agoAdd es_CU locale
Ulrich Drepper [Thu, 22 Dec 2011 16:23:28 +0000 (11:23 -0500)] 
Add es_CU locale

13 years agoWP issues
Ulrich Drepper [Thu, 22 Dec 2011 16:12:54 +0000 (11:12 -0500)] 
WP issues

13 years agoAdd unm_US locale
Ulrich Drepper [Thu, 22 Dec 2011 16:10:25 +0000 (11:10 -0500)] 
Add unm_US locale

13 years agoWP issues
Ulrich Drepper [Thu, 22 Dec 2011 15:49:40 +0000 (10:49 -0500)] 
WP issues

13 years agoAdd bho_IN locale
Ulrich Drepper [Thu, 22 Dec 2011 15:48:43 +0000 (10:48 -0500)] 
Add bho_IN locale

13 years agoUse __REDIRECT_NTH for __feraiseexcept_renamed
Ulrich Drepper [Thu, 22 Dec 2011 13:05:21 +0000 (08:05 -0500)] 
Use __REDIRECT_NTH for __feraiseexcept_renamed

13 years agoDefine EPOLLONESHOT and EPOLLET using unsigned values
Ulrich Drepper [Thu, 22 Dec 2011 03:14:05 +0000 (22:14 -0500)] 
Define EPOLLONESHOT and EPOLLET using unsigned values

13 years agoUse Kahan's formula in cacosh
Ulrich Drepper [Thu, 22 Dec 2011 03:08:12 +0000 (22:08 -0500)] 
Use Kahan's formula in cacosh

13 years agoFix sign errr in some cacosh results
Richard B. Kreckel [Thu, 22 Dec 2011 02:01:29 +0000 (21:01 -0500)] 
Fix sign errr in some cacosh results

13 years agoFix reading thread name from comm file
Ulrich Drepper [Thu, 22 Dec 2011 00:26:29 +0000 (19:26 -0500)] 
Fix reading thread name from comm file

13 years agoFix one typo
Ulrich Drepper [Wed, 21 Dec 2011 23:57:18 +0000 (18:57 -0500)] 
Fix one typo

13 years agoStore invocation-specific data of conversion modules in __gconv_step_data
Ulrich Drepper [Wed, 21 Dec 2011 23:45:50 +0000 (18:45 -0500)] 
Store invocation-specific data of conversion modules in __gconv_step_data