about summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
* [BZ #6698]Ulrich Drepper2008-07-254-13/+47
| | | | | | | | | | * stdio-common/_i18n_number.h (_i18n_number_rewrite): Take additional parameter for end of buffer. If temporary copy is too large use malloc. * stdio-common/vfprintf.c: Adjust for _i18n_number_rewrite interface change. * stdio-common/printf_fp.c (__printf_fp): Likewise.. Account for string rewrite when allocating buffer.
* * sysdeps/unix/sysv/linux/kernel-features.h: PPC has the newUlrich Drepper2008-07-252-1/+4
| | | | syscalls, too.
* * nscd/connections.c (nscd_init): Clean up fcntl call.Ulrich Drepper2008-07-252-1/+3
|
* * nscd/nscd_helper.c (open_socket): Use SOCK_CLOEXEC andUlrich Drepper2008-07-252-3/+31
| | | | SOCK_NONBLOCK if possible.
* * sysdeps/unix/sysv/linux/opensock.c (__opensock): UseUlrich Drepper2008-07-252-3/+41
| | | | SOCK_CLOEXEC if available.
* * include/rpc/clnt.h: Declare __libc_clntudp_bufcreate andUlrich Drepper2008-07-2510-16/+169
| | | | | | | | | | | | | | | | __libc_clntudp_bufcreate_internal. * include/sys/socket.h: Declare __have_sock_cloexec. * socket/Makefile (aux): Add have_sock_cloexec. * socket/have_sock_cloexec.c: New file. * sunrpc/clnt_udp.h (clntudp_bufcreate): Now a wrapper around __libc_clntudp_bufcreate. (__libc_clntudp_bufcreate): Former implementation of clntudp_bufcreate which takes an additional parameter. Create socket with non-blocking mode and close-on-exec flag set, if wanted. * sunrpc/Versions: Export __libc_clntudp_bufcreate@GLIBC_PRIVATE. * nis/ypclnt.c (yp_bind_client_create): Use __libc_clntpudp_bufcreate instead of clntudp_create. The socket has already the close-on-exec flag set if SOCK_CLOEXEC is defined.
* * sysdeps/unix/sysv/linux/kernel-features.h: DefineUlrich Drepper2008-07-253-22/+92
| | | | | | | __ASSUME_PACCEPT, __ASSUME_IN_NONBLOCK, and __ASSUME_PACCEPT if appropriate. * nscd/connections.c: Avoid fcntl calls to set close-on-exec flag and non-blocking mode by using socket, paccept, and inotify_init1.
* * Versions.def (glibc): Add GLIBC_2.9.Ulrich Drepper2008-07-2536-26/+1750
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * io/Makefile (routines): Add dup3 and pipe2. * io/Versions [glibc] (GLIBC_2.9): Add dup3 and pipe2. * io/dup3.c: New file. * io/pipe2.c: New file. * posix/unistd.h: Declare dup3 and pipe2. * socket/Makefile (routines): Add paccept. * socket/Versions [glibc] (GLIBC_2.9): Add paccept. * socket/paccept.c: New file. * socket/sys/socket.h: Declare paccept. * sysdeps/unix/syscalls.list: Add entry for dup3. * sysdeps/unix/sysv/linux/Versions [glibc] (GLIBC_2.9): Add epoll_create2 and inotify_init1. * sysdeps/unix/sysv/linux/eventfd.c: Use eventfd1 syscall if possible. * sysdeps/unix/sysv/linux/paccept.c: New file. * sysdeps/unix/sysv/linux/signalfd.c: Use signalfd4 syscall if possible. * sysdeps/unix/sysv/linux/socketcall.h: Add SOCKOP_paccept. * sysdeps/unix/sysv/linux/syscalls.list: Add epoll_create2, inotify_init1, and pipe2 entries. * sysdeps/unix/sysv/linux/alpha/sys/epoll.h: New file. * sysdeps/unix/sysv/linux/alpha/sys/eventfd.h: New file. * sysdeps/unix/sysv/linux/alpha/sys/inotify.h: New file. * sysdeps/unix/sysv/linux/alpha/sys/signalfd.h: New file. * sysdeps/unix/sysv/linux/alpha/sys/timerfd.h: New file. * sysdeps/unix/sysv/linux/bits/socket.h: Define SOCK_CLOEXEC and SOCK_NONBLOCK. * sysdeps/unix/sysv/linux/i386/paccept.S: New file. * sysdeps/unix/sysv/linux/sparc/sys/epoll.h: New file. * sysdeps/unix/sysv/linux/sparc/sys/eventfd.h: New file. * sysdeps/unix/sysv/linux/sparc/sys/inotify.h: New file. * sysdeps/unix/sysv/linux/sparc/sys/signalfd.h: New file. * sysdeps/unix/sysv/linux/sparc/sys/timerfd.h: New file. * sysdeps/unix/sysv/linux/sparc/bits/socket.h: New file. * sysdeps/unix/sysv/linux/sys/epoll.h: Define EPOLL_CLOEXEC and EPOLL_NONBLOCK. Declare epoll_create2. * sysdeps/unix/sysv/linux/sys/eventfd.h: Define EFD_CLOEXEC and EFD_NONBLOCK. * sysdeps/unix/sysv/linux/sys/inotify.h: Define IN_CLOEXEC and IN_NONBLOCK. Declare inotify_init1. * sysdeps/unix/sysv/linux/sys/signalfd.h: Define SFD_CLOEXEC and SFD_NONBLOCK. * sysdeps/unix/sysv/linux/sys/timerfd.h: Define TFD_CLOEXEC and TFD_NONBLOCK.
* * elf/elf.h: Define AT_EXECFN.Ulrich Drepper2008-07-248-20/+77
| | | | | | | | | | | | | | | | * elf/rtld.c [!__ASSUME_AT_EXECFN] (process_envvars): Don't handle LD_ORIGIN_PATH. * elf/dl-sysdep.c (_dl_sysdep_start): Handle AT_EXECFN. * elf/dl-support.c: Define _dl_execfn. Don't define _dl_origin_path if __ASSUME_AT_EXECFN is defined. (_dl_aux_init): Handle AT_EXECFN. * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_AT_EXECFN for 2.6.27 and up. * sysdeps/generic/ldsodefs.h (rtld_global_ro): Add _dl_execfn. Don't define _dl_origin_path if __ASSUME_AT_EXECFN is defined. * sysdeps/unix/sysv/linux/dl-origin.c (_dl_get_origin): Use _dl_execfn if available and avoid compatibility code if __ASSUME_AT_EXECFN is defined.
* [BZ #6712]Ulrich Drepper2008-07-241-0/+6
| | | | | | | | 2008-07-24 Ulrich Drepper <drepper@redhat.com> * sysdeps/unix/sysv/linux/dl-sysdep.h: Don't declare _dl_discover_osversion only for older kernels. [BZ #6712]
* Don't declare _dl_discover_osversion only for older kernels.Ulrich Drepper2008-07-241-3/+1
|
* * hurd/fd-read.c (_hurd_fd_read): Fix last change.Roland McGrath2008-07-222-1/+8
|
* * hurd/fd-read.c (_hurd_fd_read): Return EGRATUITOUS if the serverRoland McGrath2008-07-211-0/+5
| | | | returned too much data out of line.
* 2008-07-21 Roland McGrath <roland@frob.com>Roland McGrath2008-07-211-1/+3
| | | | | * hurd/fd-read.c (_hurd_fd_read): Return EGRATUITOUS if the server returned too much data out of line.
* * locale/setlocale.c (setname): Remove inline to avoid compilerUlrich Drepper2008-07-202-1/+4
| | | | warning.
* * locale/setlocale.c (setlocale): Take the setlocale lock earlier.Ulrich Drepper2008-07-203-19/+35
|
* * stdio-common/vfprintf.c (_IO_helper_overflow): In case _IO_sputn cvs/fedora-glibc-20080716T0944Ulrich Drepper2008-07-152-1/+8
| | | | doesn't manage to write anything, fail.
* * malloc/hooks.c (__malloc_check_init): Remove printf.Ulrich Drepper2008-07-151-0/+4
|
* (__malloc_check_init): Remove printf.Ulrich Drepper2008-07-151-3/+1
|
* * sysdeps/mach/hurd/bits/fcntl.h: Include <sys/types.h>.Roland McGrath2008-07-141-0/+4
|
* 2008-07-14 Samuel Thibault <samuel.thibault@ens-lyon.org>Roland McGrath2008-07-141-0/+2
| | | | * sysdeps/mach/hurd/bits/fcntl.h: Include <sys/types.h>.
* * nscd/connections.c (main_loop_poll): Fix handling of read errorsUlrich Drepper2008-07-122-29/+89
| | | | | from inotify. (main_loop_epoll): Likewise.
* * locales/iso14651_t1_common: Add Kannada collation support.Ulrich Drepper2008-07-112-0/+275
| | | | | Patch by Pravin Satpute <psatpute@redhat.com>.
* * resolv/res_send.c: Remove unnecessary res_pquery prototype.Ulrich Drepper2008-07-092-1/+2
|
* * resolv/res_query.c (__libc_res_nquery): Issue debug message onlyUlrich Drepper2008-07-092-2/+7
| | | | if DEBUG is defined.
* * resolv/res_query.c (__libc_res_nquery): Align buffer for T_AAAAUlrich Drepper2008-07-092-4/+25
| | | | query. Adjust buffer size computation for padding.
* * stdio-common/Makefile: Add rules to build and run tst-setvbuf1.Ulrich Drepper2008-07-084-2/+31
| | | | | * stdio-common/tst-setvbuf1.c: New file. * stdio-common/tst-setvbuf1.expect: New file.
* [BZ #6719]Ulrich Drepper2008-07-082-1/+8
| | | | | | | | 2008-07-08 Ulrich Drepper <drepper@redhat.com> [BZ #6719] * libio/iosetvbuf.c (_IO_setvbuf): Correctly clear buffering flags when selecting fully-buffered stream. Patch by Wang Xin <wxinee@gmail.com>.
* [BZ #6713]Ulrich Drepper2008-07-081-0/+6
| | | | | | | 2008-07-08 Ulrich Drepper <drepper@redhat.com> [BZ #6713] * charmaps/UTF-8: Fix U1DBA entry representation. Patch by Colin Watson.
* Fix U1DBA entry representation.Ulrich Drepper2008-07-081-1/+1
|
* * sysdeps/mach/hurd/open.c: Include <stdio.h>.Roland McGrath2008-07-071-0/+9
| | | | | | | | (__open_2): New function. (__open64_2): New alias to __open_2. * sysdeps/mach/hurd/openat.c: Include <stdio.h>. (__openat_2): New function. (__openat64_2): New alias to __openat_2.
* 2008-07-06 Samuel Thibault <samuel.thibault@ens-lyon.org>Roland McGrath2008-07-072-0/+27
| | | | | | | | | * sysdeps/mach/hurd/open.c: Include <stdio.h>. (__open_2): New function. (__open64_2): New alias to __open_2. * sysdeps/mach/hurd/openat.c: Include <stdio.h>. (__openat_2): New function. (__openat64_2): New alias to __openat_2.
* [BZ #6723]Ulrich Drepper2008-07-061-0/+5
| | | | | | | | .. 2008-07-06 Ulrich Drepper <drepper@redhat.com> [BZ #6723] * time/mktime.c (__mktime_internal): Normalize tp->tm_isdst value.
* (__mktime_internal): Normalize tp->tm_isdst value.Ulrich Drepper2008-07-061-2/+4
|
* * sysdeps/mach/hurd/recv.c (__recv): Initialize NPORTS. cvs/fedora-glibc-20080703T1203Roland McGrath2008-07-027-3/+15
| | | | | | | | * sysdeps/mach/hurd/recvfrom.c (__recvfrom): Likewise. * sysdeps/mach/hurd/recvmsg.c (__recvmsg): Likewise. * hurd/fd-read.c (_hurd_fd_read): Initialize NREAD. * hurd/get-host.c (_hurd_get_host_config): Likewise. * sysdeps/mach/hurd/dl-sysdep.c (__libc_read): Likewise.
* * sysdeps/unix/bsd/bsd4.4/bits/socket.h: Define MSG_NOSIGNAL.Roland McGrath2008-07-022-1/+13
| | | | | | | | | | | * hurd/hurd/fd.h (__hurd_sockfail): Add extern inline function. * sysdeps/mach/hurd/recv.c (__recv): Use __hurd_sockfail instead of __hurd_dfail. * sysdeps/mach/hurd/recvfrom.c (__recvfrom): Likewise. * sysdeps/mach/hurd/recvmsg.c (__recvmsg): Likewise. * sysdeps/mach/hurd/send.c (__send): Likewise. * sysdeps/mach/hurd/sendto.c (__sendfrom): Likewise. * sysdeps/mach/hurd/sendmsg.c (__sendmsg): Likewise.
* 2008-07-01 Samuel Thibault <samuel.thibault@ens-lyon.org>Roland McGrath2008-07-027-8/+23
| | | | | | | | | | | | * sysdeps/unix/bsd/bsd4.4/bits/socket.h: Define MSG_NOSIGNAL. * hurd/hurd/fd.h (__hurd_sockfail): Add extern inline function. * sysdeps/mach/hurd/recv.c (__recv): Use __hurd_sockfail instead of __hurd_dfail. * sysdeps/mach/hurd/recvfrom.c (__recvfrom): Likewise * sysdeps/mach/hurd/recvmsg.c (__recvmsg): Likewise * sysdeps/mach/hurd/send.c (__send): Likewise * sysdeps/mach/hurd/sendfrom.c (__sendfrom): Likewise * sysdeps/mach/hurd/sendmsg.c (__sendmsg): Likewise
* Remove use of __P.Ulrich Drepper2008-06-271-10/+1
|
* * resolv/res_debug.c (__p_type_syms): Add ns_t_dname entry.Ulrich Drepper2008-06-271-1/+1
|
* [BZ #6657]Ulrich Drepper2008-06-274-2/+22
| | | | | | | | 2008-06-27 Ulrich Drepper <drepper@redhat.com> [BZ #6657] * time/strptime_l.c: Don't clear s.era_cnt after successful match of %EY. Patch by Petr Baudis.
* * resolv/res_debig.c (__p_type_syms): Add ns_t_dname entry.Ulrich Drepper2008-06-273-2/+8
| | | | Patch by Peter Jones <pjones@redhat.com>.
* [BZ #6654]Ulrich Drepper2008-06-264-4/+34
| | | | | | | 2008-06-25 Ulrich Drepper <drepper@redhat.com> [BZ #6654] * stdlib/canonicalize.c (__realpath): readlink can write too much into the buffer on platforms without PATH_MAX.
* [BZ #6653]Ulrich Drepper2008-06-251-0/+1
|
* * posix/tst-regex.c (main): Rename to...Ulrich Drepper2008-06-252-10/+18
| | | | | | | (do_test): ... this. Remove cmdline option processing. (TIMEOUT): Define. (TEST_FUNCTION): Define. (CMDLINE_OPTIONS): Define.
* [BZ #5210]Ulrich Drepper2008-06-253-0/+12
| | | | | | | | 2008-06-25 Ulrich Drepper <drepper@redhat.com> [BZ #5210] * configure.in: Add -Werror to -fstack-protector test to catch unsupported architectures. Patch by Gilles Esponasse <g.esp@free.fr>.
* [BZ #5814]Ulrich Drepper2008-06-254-5/+12
| | | | | | 2008-06-25 Ulrich Drepper <drepper@redhat.com> [BZ #5814] * locales/fi_FI: Fix separator for hours, minutes, and seconds.
* * stdlib/tst-setcontext.c: Set back_in_main before exit ifUlrich Drepper2008-06-252-1/+9
| | | | getcontext returns ENOSYS.
* * locales/iso14651_t1_common: Add support for Gurumukhi script.Ulrich Drepper2008-06-242-0/+231
| | | | Patch by Pravin Satpute <psatpute@redhat.com>.
* * nscd/connections.c (main_loop_poll): Fix test for read error.Ulrich Drepper2008-06-182-2/+7
| | | | (main_loop_epoll): Likewise.
* * sysdeps/posix/getaddrinfo.c: Move _res_hconf_init call to aUlrich Drepper2008-06-132-21/+12
| | | | better place so it is not called when nscd is used.