aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
AgeCommit message (Collapse)AuthorFilesLines
2007-10-16* sysdeps/x86_64/cacheinfo.c (__x86_64_shared_cache_size): Define.Ulrich Drepper1-1/+18
(init_cacheinfo): Initialize it. * sysdeps/x86_64/memset.S: Use __x86_64_shared_cache_size. Always define bzero. Remove non-glibc code. * sysdeps/x86_64/bzero.S: Make an empty file. 2007-10-15 H.J. Lu <hongjiu.lu@intel.com> * sysdeps/x86_64/cacheinfo.c (__x86_64_preferred_memory_instruction): New. (init_cacheinfo): Initialize __x86_64_preferred_memory_instruction. * sysdeps/x86_64/memset.S: Rewrite. * nss/getXXbyYY_r.c (REENTRANT_NAME): Mangle startp and start_fct
2007-10-16* po/libc.pot: Regenerated.Roland McGrath1-0/+4
2007-10-15* nss/getXXbyYY_r.c (REENTRANT_NAME): Mangle start and start_fctUlrich Drepper1-0/+3
pointers.
2007-10-15[BZ #3425]Ulrich Drepper1-0/+7
2007-10-15 Ulrich Drepper <drepper@redhat.com> [BZ #3425] * resolv/nss_dns/dns-host.c (getanswer_r): Fail with NSS_STATUS_NOTFOUND if the server replied with only a CNAME and no address record to T_A/T_AAAA requests.
2007-10-15* posix/glob.c: Reimplement link_exists_p to use fstatat64.cvs/fedora-glibc-20071015T0728Ulrich Drepper1-0/+2
2007-10-15* posix/glob.c: Add some branch prediction throughout.Ulrich Drepper1-0/+2
2007-10-15* nscd/nscd_getgr_r.c (nscd_getgr_r): Store result of successfulUlrich Drepper1-0/+3
read from nscd.
2007-10-14(rfc3484_sort): Make sure that even if qsort doesn't supportUlrich Drepper1-2/+2
stable sorting out sorting here is stable by comparing service_order.
2007-10-14* posix/tst-rfc3484-2.c (do_test): Likewise.Ulrich Drepper1-0/+1
2007-10-14* posix/tst-rfc3484.c (do_test): Adjust for addition ofUlrich Drepper1-0/+2
service_order field to sorting structure.
2007-10-14* sysdeps/posix/getaddrinfo.c (struct sort_result): Addcvs/fedora-glibc-20071014T1847Ulrich Drepper1-0/+6
service_order. (rfc3484_sort): Make sure that even of qsort doesn't support stable sorting it is stable by comparing service_order. (getaddrinfo): Initialize service_order.
2007-10-14* include/time.h: Declare __tzset_parse_tz and __tzset_compute.Ulrich Drepper1-0/+18
* time/tzset.c (tzset_internal): Break TZ string parsing out into __tzset_parse_tz and updating of daylight, timezone, tzname into update_vars. (__tz_compute): Renamed from tz_compute. Take additional parameters. (__tz_convert): Updating of tm_isdst, tm_zone, and tm_gmtoff now happens in __tz_compute. * time/tzfile.c (__tzfile_read): Also read TZ string. (find_transition): Fold into __tzfile_compute. (__tzfile_compute): For times beyond the last transition try to use the TZ string. * timezone/tst-timezone.c: Information in daylight and tzname does change for Asia/Tokyo timezone with more concrete information. Remove the test. * include/stdio.h: Add libc_hidden_proto for ftello. * libio/ftello.c: Add libc_hidden_def.
2007-10-14[BZ #1140]Ulrich Drepper1-0/+9
2007-10-14 Ulrich Drepper <drepper@redhat.com> [BZ #1140] * time/tzfile.c (__tzfile_compute): Compute tzname[] values based on the specified time and not the last entries in the file. Move code to determine tzname[] to... (find_transition): ...here. Add ugly guess for times before the first transition.
2007-10-13[BZ #3195]Ulrich Drepper1-0/+8
* nscd/nscd_getai.c (__nscd_getai): Set errno to 0 in case we found no entry. * nscd/nscd_getgr.c (nscd_getgr_r): Likewise. * nscd/nscd_gethst_r.c (nscd_gethst_r): Likewise. * nscd/nscd_getpw_r.c (nscd_getpw_r): Likewise. * nscd/nscd_getserv_r.c (nscd_getserv_r): Likewise.
2007-10-13* nscd/nscd_getgr_r.c (nscd_getgr_r): Optimize a bit: use simplerUlrich Drepper1-0/+4
read mechanism when there are no group members and avoid no-op read syscall in this case.
2007-10-13[BZ #3242]Ulrich Drepper1-0/+8
2007-10-13 Ulrich Drepper <drepper@redhat.com> [BZ #3242] * nscd/nscd_helper.c (wait_on_socket): Take timeout as parameter. (__readall): If reading failed due to EAGAIN error wait a bit and possibly try again. (__readvall): Likewise.
2007-10-13* intl/dcigettext.c (_nl_find_msg): Unlock the conversions_lockUlrich Drepper1-0/+5
when we cannot recode the message.
2007-10-13* libio/Makefile (tests): Add tst-ext2.Ulrich Drepper1-0/+2
* libio/tst-ext2.c: New file.
2007-10-13write-only streams. For read/write streams, check whether weUlrich Drepper1-1/+2
performed a read operation already.
2007-10-13[BZ #4359]Ulrich Drepper1-0/+6
2007-10-13 Ulrich Drepper <drepper@redhat.com> [BZ #4359] * libio/__freading.c (__freading): Don't return true for write-only streams.
2007-10-13* locale/programs/repertoire.c (repertoire_read): Always freeUlrich Drepper1-0/+3
memory for repertoire file name [Coverity CID 270].
2007-10-13* elf/cache.c (save_aux_cache): Free memory allocated forUlrich Drepper1-0/+5
temporary file name [Coverity CID 267].
2007-10-12* misc/Makefile (headers): Add bits/error.h.Jakub Jelinek1-0/+4
2007-10-12 Jakub Jelinek <jakub@redhat.com> * misc/Makefile (headers): Add bits/error.h.
2007-10-12* posix/fnmatch_loop.c: Take rule index returned as part ofUlrich Drepper1-0/+5
findidx return value into account when accessing weights. * posix/regcomp.c: Likewise. * posix/regexec.c: Likewise.
2007-10-12* locale/programs/ld-collate.c (collate_read): Optimize a bit.Ulrich Drepper1-0/+5
(skip_to): Fix problems with parameter of elifdef/elifndef.
2007-10-12* iconv/gconv_simple.c: Add some branch prediction.Ulrich Drepper1-0/+4
2007-10-12* locale/programs/ld-collate.c (collate_read): If ignore_contentUlrich Drepper1-0/+5
and nowtok is tok_define, eat any tok_eol tokens.
2007-10-11* sysdeps/gnu/netinet/tcp.h: Include sys/socket.h if __USE_MISC. cvs/fedora-glibc-20071011T1636Jakub Jelinek1-0/+10
(struct tcp_md5sig): Change tcpm_addr type to struct sockaddr_storage. * inet/netinet/in.h: Don't include bits/socket.h. * sysdeps/unix/sysv/linux/bits/socket.h: Only check _SYS_SOCKET_H macro. * sysdeps/unix/bsd/bsd4.4/bits/socket.h: Likewise. 2007-10-11 Jakub Jelinek <jakub@redhat.com> * sysdeps/gnu/netinet/tcp.h: Include sys/socket.h if __USE_MISC. (struct tcp_md5sig): Change tcpm_addr type to struct sockaddr_storage. * inet/netinet/in.h: Don't include bits/socket.h. * sysdeps/unix/sysv/linux/bits/socket.h: Only check _SYS_SOCKET_H macro. * sysdeps/unix/bsd/bsd4.4/bits/socket.h: Likewise.
2007-10-11* locale/programs/locfile-token.h: Remove tok_elif, add tok_elifdefUlrich Drepper1-0/+7
and tok_elifndef. * locale/programs/locfile-kw.gperf: Likewise. * locale/programs/ld-collate.c: Implement primitive preprocessor.
2007-10-10* stdio-common/printf-parse.h: Include string.h and wchar.h.Ulrich Drepper1-0/+14
(__find_specwc): Change into __extern_always_inline function. (__find_specmb): Likewise. Remove ps argument. Use __strchrnul. (__parse_one_specmb): Remove ps argument. * stdio-common/vfprintf.c (vfprintf): Remove mbstate variable. Adjust __find_specmb and __parse_one_specmb callers. * stdio-common/printf-prs.c (parse_printf_format): Likewise. * stdio-common/printf-parsemb.c (__find_specwc, __find_specmb): Removed. (__parse_one_specmb): Remove ps argument, adjust __find_specmb caller.
2007-10-10* sysdeps/x86_64/cacheinfo.c (init_cacheinfo): Work around problemUlrich Drepper1-0/+5
with some Pentium Ds.
2007-10-09* sysdeps/unix/sysv/linux/eventfd_read.c (eventfd_read): UseUlrich Drepper1-0/+7
__read not read. * sysdeps/unix/sysv/linux/eventfd_write.c (eventfd_write): Use __write not write.
2007-10-07* locale/programs/ld-time.c (time_finish): Default forUlrich Drepper1-0/+2
first_workday is Monday.
2007-10-07[BZ #181]Ulrich Drepper1-0/+3
* locale/C-time.c: Set week_1stday data to 19971201.
2007-10-07[BZ #2633]Ulrich Drepper1-0/+3
* wcsmbs/wchar.h: Move many C99 functions into std namespace.
2007-10-07[BZ #5103]Ulrich Drepper1-0/+5
* posix/glob.c (glob): Recognize patterns starting \/. * posix/tst-gnuglob.c (find_file): Handle absolute path names. (main): Add test for pattern starting \/.
2007-10-07* misc/error.h: Use __const instead of const.Ulrich Drepper1-0/+11
* misc/bits/error.h: Likewise. 2007-10-07 Andreas Jaeger <aj@suse.de> * include/bits/error.h: New file. * misc/bits/error.h (error_at_line): Fix prototype.
2007-10-07[BZ #3924]Ulrich Drepper1-0/+5
* sysdeps/i386/dl-trampoline.S (_dl_runtime_profile): Fix a few more little bugs in creating the stack frame when pltexit has to be called.
2007-10-06* nscd/connections.c (verify_persistent_db): Recognize circular lists.Ulrich Drepper1-0/+1
2007-10-06* nscd/nscd_helper.c (__nscd_cache_search): Prevent endless loops.Ulrich Drepper1-0/+2
2007-10-06[BZ #4407]Ulrich Drepper1-1/+7
* sysdeps/ieee754/dbl-64/e_lgamma_r.c: Fix *signgamp for -0.0. * sysdeps/ieee754/flt-32/e_lgammaf_r.c: Likewise. * sysdeps/ieee754/ldbl-96/e_lgammal_r.c: Likewise. * math/libm-test.inc: Add test for this case. Half the patch by Christian Iseli <christian.iseli@licr.org>.
2007-10-06[BZ #5010]Ulrich Drepper1-0/+9
2007-10-06 Ulrich Drepper <drepper@redhat.com> [BZ #5010] * sunrpc/svc.c (struct svc_callout): Add sc_mapped element. (svc_register): Initialize sc_mapped. Set to TRUE if call to map service succeeded. (svc_is_mapped): New function. (svc_unregister): Use it before trying to unmap service.
2007-10-05[BZ #5063]Ulrich Drepper1-1/+14
* timezone/zic.c: Update from tzcode2007h. [BZ #5063] * timezone/africa: Update from tzdata2007h. * timezone/antarctica: Likewise. * timezone/asia: Likewise. * timezone/australasia: Likewise. * timezone/europe: Likewise. * timezone/leapseconds: Likewise. * timezone/northamerica: Likewise. * timezone/southamerica: Likewise. * timzeone/zone.tab: Likewise. * sysdeps/unix/sysv/linux/Versions: Export eventfd, eventfd_read,
2007-10-05[BZ #5104]Ulrich Drepper1-0/+3
* elf/do-lookup.h (do_lookup_x): Don't ignore STT_COMMON symbols.
2007-10-05[BZ #5113]Ulrich Drepper1-0/+6
* string/bits/string2.h (__strdup): Cast parameters to calloc to avoid warning with -Wconversion. (__strndup): Likewise. Patch to 50% by Christian Iseli <christian.iseli@licr.org>.
2007-10-05[BZ #5112]Ulrich Drepper1-0/+4
* nscd/connections.c (restart): Don't resync if database is disabled. Patch mostly by Brian De Wolf <bldewolf@csupomona.edu>.
2007-10-052007-10-04 Jakub Jelinek <jakub@redhat.com>Ulrich Drepper1-2/+2
2007-10-03 Jakub Jelinek <jakub@redhat.com>
2007-10-05* sysdeps/gnu/netinet/tcp.h: Define TCP_MD5SIG, TCP_MD5SIG_MAXKEYLEN,Ulrich Drepper1-0/+12
struct tcp_md5sig. Extend struct tcp_info according to recent kernels. * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Add eventfd, evetnfd_read, eventfd_write. * sysdeps/unix/sysv/linux/eventfd.c: New file. * sysdeps/unix/sysv/linux/eventfd_read.c: New file. * sysdeps/unix/sysv/linux/eventfd_write.c: New file. * sysdeps/unix/sysv/linux/sys/eventfd.h: New file. * sysdeps/unix/sysv/linux/Versions: Export eventfd, evetnfd_read, eventfd_write for GLIBC_2.7.
2007-10-05* sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Add signalfd.Ulrich Drepper1-0/+7
* sysdeps/unix/sysv/linux/signalfd.c: New file. * sysdeps/unix/sysv/linux/sys/signalfd.h: New file. * sysdeps/unix/sysv/linux/Versions: Export signalfd for GLIBC_2.7.
2007-10-052007-10-04 Jakub JelinekUlrich Drepper1-0/+14
* stdlib/msort.c: Include stdint.h. (struct msort_param): New type. (msort_with_tmp): Use struct msort_param pointer for unchanging parameters. Add optimized handling for several common sizes and indirect sorting mode. (qsort): Adjust msort_with_tmp callers. For big S use indirect sorting. Suggested by Belazougui Djamel . * stdlib/Makefile (tests): Add tst-qsort2. * stdlib/tst-qsort2.c: New test.