summaryrefslogtreecommitdiff
path: root/ChangeLog
AgeCommit message (Collapse)Author
2012-05-10Hurd: Fix setres[ug]id handling of -1Samuel Thibault
2012-05-10Hurd: _hurd_select: check for invalid parameter valuesPino Toscano
2012-05-10Hurd: Fix sbrk beyond 128MBSamuel Thibault
2012-05-10Hurd: recvfrom(): take into account null address portsPino Toscano
2012-05-10Hurd: readlinkatSamuel Thibault
2012-05-10Hurd: Update posix_opt.hSamuel Thibault
2012-05-10Hurd: Fix POSIX 2008 visibilitySamuel Thibault
2012-05-10Hurd: Build pldd also if use-ldconfig != yes || build-shared != yesThomas Schwinge
2012-05-10Hurd: opendiratThomas Schwinge
2012-05-10Hurd: empty file names fail with ENOENTSamuel Thibault
2012-05-10Hurd: hidden_nolink macro for NO_HIDDEN case.Thomas Schwinge
2012-05-10Hurd: mmap deficienciesThomas Schwinge
2012-05-10Hurd: Fix mlock in all cases except non-readable pages.Samuel Thibault
2012-05-10Hurd: Fix mkdir / error valueSamuel Thibault
2012-05-10Hurd: Add missing includesThomas Schwinge
2012-05-10Hurd: mach: compliance fixes for nanosleepPino Toscano
2012-05-10Hurd: Include RPC user stubs in linkobj/libc.soThomas Schwinge
2012-05-10Hurd: Fix value of __libc_stack_endSamuel Thibault
2012-05-10Hurd: libc_once_getThomas Schwinge
2012-05-10Hurd: #include <kernel-features.h>Thomas Schwinge
2012-05-10Add a missing #include.Roland McGrath
2012-05-10Hurd: setitimer.c: Fix unlock in error patchSamuel Thibault
2012-05-10Hurd: ioctl() incorrectly decodes argumentSamuel Thibault
2012-05-10Hurd: Avoid init-first.c miscompilation.Thomas Schwinge
2012-05-10Hurd: dup3Thomas Schwinge
2012-05-10Hurd: Hurd: dl-sysdep.c: Include code only #ifdef SHARED.Samuel Thibault
2012-05-10Hurd: Missing critical region locks.Samuel Thibault
2012-05-10Hurd: Fix signal-catching functions.Samuel Thibault
2012-05-10Hurd: bits/socket.hThomas Schwinge
2012-05-10Hurd: accept4Thomas Schwinge
2012-05-10Hurd: ____longjmp_chkThomas Schwinge
2012-05-10Hurd: Add SOL_IP, SOL_IPV6, SOL_ICMPV6Samuel Thibault
2012-05-10Hurd: O_CLOEXEC in rtldThomas Schwinge
2012-05-10Hurd: Add more ipv6 macros.Samuel Thibault
2012-05-10Fix for logb/logbf/logbl (bugs 13954/13955/13956)Adhemerval Zanella
POSIX 2008 states that if the input for 'logb[f|l]' is a subnormal number it should be treated as if it were normalized. This means the implementation should calculate the log2 of the mantissa and add it to the subnormal exponent (-126 for float and -1022 for double and IBM long double). This patch takes care of that.
2012-05-10Make sunrpc code usable againAndreas Jaeger
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.
2012-05-10Typo fix in x86_64/dl-machine.hRoland McGrath
2012-05-10Define __STDC_NO_THREADS__.Joseph Myers
2012-05-10Build rpcgen-generated files when cross compiling.Maxim Kuvyrkov
2012-05-10Sign extend R_X86_64_DTPOFF64/R_X86_64_TPOFF64H.J. Lu
2012-05-10Move remaining syscalls from sysdeps/unix/sysv/syscalls.list to ↵Joseph Myers
sysdeps/unix/sysv/linux/syscalls.list.
2012-05-10[PATCH] [BZ #3440] Make LC_ALL etc. useful in #if expressions.Paul Eggert
2012-05-10Add dependency tracking for rpc-compat-routinesAndreas Schwab
2012-05-09Update stdlib/longlong.h from GCCH.J. Lu
2012-05-09Cleanup nscd.cAndreas Jaeger
2012-05-09 Andreas Jaeger <aj@suse.de> * nscd/nscd.c (run_modes): Make named enum, reorder so that default is first entry. (run_mode): Set type. (main): Remove informal message about syslog. (options): Fix typo.
2012-05-09Add volatiles for x86-64 bits/mathinline.hAndreas Jaeger
[BZ #14053] GCC 4.7 might remove consecutive calls to e.g. lrintf since the assembler instructions are the same and GCC does not know that the result is different depending on the rounding mode. For SSE instructions, the control register is not available so there is no way to inform GCC about this. Therefore the asms are marked as volatile.
2012-05-09Cleanup last patch for nscd/nscd.cAndreas Jaeger
* nscd/nscd.c (run_mode): Use enum. (main): Cleanup coding style issue.
2012-05-09Add --foreground option for nscdAndreas Jaeger
For a better integration of nscd with systemd, we should run nscd not as daemon but in the foreground. A new --foreground option should be added. 2012-05-09 Alexandre Oliva <aoliva@redhat.com> Andreas Jaeger <aj@suse.de> * nscd/nscd.c (go_background): Replaced with... (run_mode): ... this. (RUN_FOREGROUND, RUN_DAEMONIZE, RUN_DEBUG): Add. (options): Add -F --foreground. (main): Implement it. (parse_opt): Parse it.
2012-05-09Fix strspn warning with -WconversionAndreas Jaeger
[BZ #14083] Fix warning when using strspn with -Wconversion: $ gcc -Wconversion -O t.c t.c: In function ‘main’: t.c:8:7: warning: conversion to ‘long unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion]
2012-05-09conformtest: Update expectations for more ISO C headers.Joseph Myers