aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2014-02-08Open development for 2.20glibc-2.19.90Allan McRae3-2/+13
2014-02-07Update version.h and include/features.h for 2.19 releaseglibc-2.19Allan McRae2-3/+3
2014-02-07Bug 15968 was fixed by commit 0748546f660d27a2ad29fa6174d456e2f6490758.Joseph Myers2-8/+9
2014-02-07Bug 6981 was fixed by commit 1484e65736f4cab27e5051e0f06be8470e69af82.Joseph Myers2-18/+19
2014-02-06BZ #16529: Fix pedantic warning with netinet/in.h.Carlos O'Donell3-2/+7
When compiling with pedantic the following warning is seen: gcc -Wall -pedantic -O0 -o test test.c In file included from test.c:3:0: /path/inet/netinet/in.h:111:21: warning: comma at end of \ enumerator list [-Wpedantic] IPPROTO_MH = 135, /* IPv6 mobility header. */ ^ It is valid C99 to have a trailing comma after the last item in an enumeration. However it is not valid C90. If possible glibc attempts to keep all headers C90 + long long without requiring C99 features. In this case it's easy to fix the headers and it removes the warning seem with -pedantic.
2014-02-06Update contrib.texiSiddhesh Poyarekar2-7/+17
Update blurb for Roland, Alex, Ryan, Joseph and Carlos.
2014-02-05Add missing ChangeLog from yesterday's sparc ULPs update.David S. Miller1-0/+5
2014-02-06Revert "microblaze BZ #15705: Define MMAP2_PAGE_SHIFT"David Holsgrove3-21/+12
This reverts commit 79b846ecc0275ceb02b5e2d3b03a34d7c43e6bf9. Conflicts: NEWS ports/ChangeLog.microblaze Signed-off-by: David Holsgrove <david.holsgrove@xilinx.com>
2014-02-06Revert "BZ 16133 has been fixed (async signal safe TLS)."Allan McRae1-6/+6
This reverts commit a494421f5268df333c589d71104a39bb6a9cff19. Conflicts: NEWS
2014-02-06Revert "Patch [1/4] async-signal safe TLS."Allan McRae5-73/+0
This reverts commit 69a17d9d245dc3551792e95e1823cc2d877592f3.
2014-02-06Revert "Patch 3/4 of the effort to make TLS access async-signal-safe."Allan McRae5-26/+5
This reverts commit 35e8f7ab94c910659de9d507aa0f3e1f8973d914.
2014-02-06Revert "Patch 2/4 of the effort to make TLS access async-signal-safe."Allan McRae4-185/+16
This reverts commit 1f33d36a8a9e78c81bed59b47f260723f56bb7e6. Conflicts: elf/dl-misc.c Also reverts the follow commits that were bug fixes to new code introduced in the above commit: 063b2acbce83549df82ab30f5af573f1b9c4bd19 b627fdd58554bc36bd344dc40a8787c4b7a9cc46 e81c64bba13d2d8b2a4e53254a82cc80f27c8497
2014-02-06Revert "Async-signal safe TLS."Allan McRae9-333/+46
This reverts commit 7f507ee17aee720fa423fa38502bc3caa0dd03d7. Conflicts: ChangeLog nptl/tst-tls7.c nptl/tst-tls7mod.c
2014-02-05Fix comment in kernel-features.h.Carlos O'Donell2-1/+3
Use "was" not "were."
2014-02-05Fix tst-setgetname for Linux kernels < 2.6.33.Carlos O'Donell4-0/+32
Support for /proc/self/task/$tid/comm as added in Linux 2.6.33, therefore since the test tst-setgetname relies on this functionality to operate we must skip the test in kernels < 2.6.33. We wrap the checks with __ASSUME_PROC_PID_TASK_COMM such that in the future when we move arch_minimum_kernel to 2.6.33 we can remove this code.
2014-02-05microblaze: Update libm-test-ulpsDavid Holsgrove3-3390/+4095
Update libm-test-ulps for microblaze, and remove unneeded copy libm-test-ulps_new. ports/ChangeLog.microblaze 2014-02-04 David Holsgrove <david.holsgrove@xilinx.com> * sysdeps/microblaze/libm-test-ulps: Update. * sysdeps/microblaze/libm-test-ulps_new: Deleted redundant file. Signed-off-by: David Holsgrove <david.holsgrove@xilinx.com>
2014-02-05microblaze BZ #15705: Define MMAP2_PAGE_SHIFTDavid Holsgrove3-12/+21
Define MMAP2_PAGE_SHIFT to -1 for microblaze so the correct shift for the syscall is determined dynamically using getpagesize ports/ChangeLog.microblaze 2014-02-04 David Holsgrove <david.holsgrove@xilinx.com> * sysdeps/unix/sysv/linux/microblaze/mmap64.c: New file. Signed-off-by: David Holsgrove <david.holsgrove@xilinx.com>
2014-02-05microblaze: Use <fenv.h> fallback functionsDavid Holsgrove3-50/+5
Delete redundant fegetround.c and fesetround.c for microblaze and use the fallback functions instead. ports/ChangeLog.microblaze 2014-02-04 David Holsgrove <david.holsgrove@xilinx.com> * sysdeps/microblaze/fegetround.c: Delete redundant file. * sysdeps/microblaze/fesetround.c: Likewise. Signed-off-by: David Holsgrove <david.holsgrove@xilinx.com>
2014-02-05Update NEWS for #16398Siddhesh Poyarekar1-2/+2
2014-02-05Fix infinite loop in ftell when writing wide char data (BZ #16398)Siddhesh Poyarekar3-5/+115
ftell tries to avoid flushing the buffer when it is in write mode by converting the wide char data and placing it into the binary buffer. If the output buffer space is full and there is data to write, the code reverts to flushing the buffer. This breaks when there is space in the buffer but it is not enough to convert the next character in the wide data buffer, due to which __codecvt_do_out returns a __codecvt_partial status. In this case, ftell keeps running in an infinite loop. The fix here is to detect the __codecvt_partial status in addition to checking if the buffer is full. I have also added a test case that demonstrates the infinite loop.
2014-02-05Update contrib.texiSiddhesh Poyarekar2-4/+21
This may not be a complete list of new contributors added to the list, so I'd love it if more people look at contributions and suggest additions.
2014-02-04Adjust sparc ULPs.David S. Miller1-0/+5
* sysdeps/sparc/fpu/libm-test-ulps: Update for some 64-bit differences from 32-bit.
2014-02-04PowerPC: powerpc64le abilist for 2.17Adhemerval Zanella14-0/+3178
This patch is the abifiles for powerpc64le based on GLIBC 2.17.
2014-02-04PowerPC: Change powerpc64le start ABI to 2.17.Adhemerval Zanella3-2/+7
2014-02-04abilist-pattern configurabilityAdhemerval Zanella3-0/+47
This patch creates implicit rules to match the abifiles if abilist-pattern is defined in the architecture Makefile. This allows machine specific Makefiles to define different abifiles names (for instance *-le.abilist for powerpc64le).
2014-02-04Update x86_64 ULPs (AMD family 21, model 2)Eric Wong2-3/+165
Tested on an AMD FX-8320 CPU
2014-02-04Update x86_64 ULPs (AMD Family 10h)Eric Wong2-2/+615
2014-02-03Remove excessive redundant ChangeLog header lines.Roland McGrath1-74/+0
2014-02-03[hppa] Regenerate libm-test-ulps.Carlos O'Donell2-42/+4448
Regenerate libm-test-ulps from scratch.
2014-02-03Fix manual build warnings.Carlos O'Donell2-2/+7
The mixed use of automatic and manual node next, previous, and top specification causes warning when building the manual. This fix explicitly specifies the node's next, previous and top values to fix the warning.
2014-02-03* manual/macros.texi: Add comments before MTASC-safety macros.Alexandre Oliva2-2/+50
2014-02-03* manual/users.texi: Document MTASC-safety properties.Alexandre Oliva2-0/+798
2014-02-03* manual/threads.texi (pthread_key_create, pthread_key_delete,Alexandre Oliva3-20/+39
pthread_getspecific, pthread_setspecific): Format with @deftypefun, and add @safety note. * manual/signal.texi: Move comments that analyze the above functions to their home place.
2014-02-03Update Slovenian translationsAllan McRae2-570/+597
2014-02-02* manual/time.texi (timegm): Add missing blank after @c.Alexandre Oliva2-1/+6
Reported by Joseph Myers <joseph@codesourcery.com>.
2014-02-01* manual/check-safety.sh: New.Alexandre Oliva3-1/+126
* manual/Makefile ($(objpfx)stamp-summary): Run it.
2014-02-01* manual/terminal.texi: Document MTASC-safety properties.Alexandre Oliva2-0/+178
2014-02-01* manual/filesys.texi: Document MTASC-safety properties.Alexandre Oliva2-0/+226
2014-02-01* manual/errno.texi: Document MTASC-safety properties.Alexandre Oliva2-0/+47
2014-02-01* manual/intro.texi: Document safety identifiers andAlexandre Oliva2-3/+50
conditionals.
2014-02-01* manual/string.texi (wcstok): Fix prototype.Alexandre Oliva2-19/+19
(wcstok, strtok, strtok_r): Adjust reentrancy remarks.
2014-02-01* manual/time.texi: Document MTASC-safety properties.Alexandre Oliva2-0/+373
2014-02-01* manual/string.texi: Document MTASC-safety properties.Alexandre Oliva2-0/+124
2014-02-01* manual/threads.texi: Document MTASC-safety properties.Alexandre Oliva2-0/+142
2014-02-01* manual/stdio.texi: Document MTASC-safety properties.Alexandre Oliva2-0/+253
2014-02-01* manual/syslog.texi: Document MTASC-safety properties.Alexandre Oliva2-0/+61
2014-02-01* manual/sysinfo.texi: Document MTASC-safety properties.Alexandre Oliva2-0/+96
2014-02-01* manual/startup.texi: Document MTASC-safety properties.Alexandre Oliva2-2/+81
2014-02-01* manual/socket.texi: Document MTASC-safety properties.Alexandre Oliva2-0/+573
2014-02-01* manual/signal.texi: Document MTASC-safety properties.Alexandre Oliva2-0/+141