about summary refs log tree commit diff
path: root/NEWS
Commit message (Collapse)AuthorAgeFilesLines
...
* Unify psiginfo output.Ulrich Drepper2010-10-111-2/+2
|
* More NEWS changes.Ulrich Drepper2010-10-031-2/+2
|
* Update NEWS.Ulrich Drepper2010-10-031-2/+3
|
* Fix array overflow in floating point parserAndreas Schwab2010-09-011-1/+1
|
* NEWS udpate.Ulrich Drepper2010-08-251-2/+2
|
* Add optimized strncasecmp versions for x86-64.Ulrich Drepper2010-08-141-2/+3
|
* Properly quote output of localeAndreas Schwab2010-08-121-2/+2
|
* Add support for Linux fanotify_init and fanotify_mask syscalls.Ulrich Drepper2010-08-111-1/+1
|
* Add support for prlimit and prlimit64 on Linux.Ulrich Drepper2010-08-111-0/+2
|
* Fix IPTOS_CLASS definition.Ulrich Drepper2010-08-111-2/+2
|
* Avoid too much stack use in fnmatch.Ulrich Drepper2010-08-091-2/+2
|
* Implement optimized strcaecmp for x86-64.Ulrich Drepper2010-07-301-1/+1
|
* Cleanup.Ulrich Drepper2010-07-291-2/+2
|
* Add missing BZ.Ulrich Drepper2010-07-261-1/+1
|
* NEWS updateUlrich Drepper2010-07-261-1/+4
|
* Correct checking loop in group_member.Ulrich Drepper2010-06-191-2/+6
|
* POWER7 optimized memset.Luis Machado2010-05-191-1/+5
|
* Handle too-small buffers in Linux getlogin_r.Ulrich Drepper2010-05-051-1/+1
|
* Mention more bugs which are fixed.Ulrich Drepper2010-05-041-2/+2
|
* Add BZ to an older patch.Ulrich Drepper2010-04-091-8/+7
|
* Implement interfaces to set and get names of threads.Ulrich Drepper2010-04-091-3/+6
| | | | | | | | At least the Linux kernel provides field where the kernel originally stores the command which is executed by the thread. The value can subsequently be overwritten. The added functions allow to do that for threads, providing and abstraction around the syscalls or /proc file system accesses needed.
* More news. Add BZ info for current and previous releases.Ulrich Drepper2010-04-081-5/+78
|
* More NEWS for 2.12.Ulrich Drepper2010-04-081-1/+7
|
* Hook up sq_MK locale.Ulrich Drepper2010-04-081-1/+3
|
* Implement new mode for NIS passwd.adjunct.byname table.Ulrich Drepper2010-04-071-2/+8
| | | | | | | The passwd.adjunct.byname table will not be used to fill in password fields in the passwd.byname replies. Instead it is used to synthesize the shadow.byname table, should it be missing. This is a useful mode in some installations involving Solaris.
* Add recvmmsg interface.Ulrich Drepper2009-12-081-1/+6
|
* Mentin new my_MM locale in NEWS.Ulrich Drepper2009-10-301-2/+2
|
* Implement mkostemps and mkostemps64.Ulrich Drepper2009-10-301-1/+2
|
* Mention IFUNC for PPC.Ulrich Drepper2009-10-301-0/+2
|
* Implement mkstemps and mkstemps64.Ulrich Drepper2009-10-301-3/+3
|
* Mention ps_AF locale as new.Ulrich Drepper2009-10-151-1/+3
|
* Mention pthread_sigqueueRoland McGrath2009-09-181-2/+2
|
* Remove duplicate NEWS entry.Ulrich Drepper2009-08-081-3/+0
|
* Yet more news items.Ulrich Drepper2009-08-081-0/+4
|
* Add some news items.Ulrich Drepper2009-08-081-3/+20
|
* Add 2.11 news items.Ulrich Drepper2009-07-211-1/+22
|
* Implement execvpe.Ulrich Drepper2009-06-021-1/+4
| | | | | There is some existing practice in other OSes and it's trivial to implement giving the existing code. Fixes BZ #10221.
* Describe latest IFUNC changes.Ulrich Drepper2009-05-311-1/+4
|
* Describe nss_dns parallel lookup workaround in 2.10 NEWS.Ulrich Drepper2009-05-221-0/+7
|
* Check for valid stack frame in longjmp.Ulrich Drepper2009-05-151-1/+7
| | | | | | | If longjmp restores the stack frame to an address which is beyond the stack frame at the time of the longjmp call it would install an uninitialized stack frame. If compiled with _FORTIFY_SOURCE defined, longjmp will now bail out in this situation.
* * shadow/sgetspent_r.c (__sgetspent_r): Recognize too small buffers.Ulrich Drepper2009-04-231-1/+4
|
* * sysdeps/x86-64/strrchr.S: New file.Ulrich Drepper2009-04-141-2/+2
|
* * stdio-common/printf.h (struct printf_info): Add user element.Ulrich Drepper2009-04-111-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | New types printf_arginfo_size_function, printf_va_arg_function. Declare register_printf_specifier, register_printf_modifier, register_printf_type. * stdio-common/printf-parse.h (struct printf_spec): Add size element. (union printf_arg): Add pa_user element. Adjust __printf_arginfo_table type. Add __printf_va_arg_table, __printf_modifier_table, __handle_registered_modifier_mb, and __handle_registered_modifier_wc declarations. * stdio-common/printf-parsemb.c: Recognize registered modifiers. If registered arginfo call failed try normal specifier. * stdio-common/printf-prs.c: Pass additional parameter to arginfo function. * stdio-common/Makefile (routines): Add reg-modifier and reg-type. * stdio-common/Versions: Export register_printf_modifier, register_printf_type, and register_printf_specifier for GLIBC_2.10. * stdio-common/reg-modifier.c: New file. * stdio-common/reg-type.c: New file. * stdio-common/reg-printf.c (__register_printf_specifier): New function. Mostly the old __register_printf_function function but uses locking and type of third parameter changed. (__register_printf_function): Implement using __register_printf_specifier. * stdio-common/vfprintf.c (vfprintf): Collect argument sizes in calls to arginfo functions. Allocate enough memory for user-defined types. Call new va_arg functions to get user-defined types. Try installed handlers even for existing format specifiers first.
* * malloc/malloc.c (malloc_info): New function. cvs/fedora-glibc-20090409T1422Ulrich Drepper2009-04-091-2/+2
| | | | | | | * malloc/malloc.h: Declare it. * malloc/Versions: Export malloc_info for GLIBC_2.10. * resolv/nss_dns/dns-host.c (getanswer_r): Use strcasecmp
* * sysdeps/x86_64/strchrnul.S: New file. cvs/fedora-glibc-20090408T1602Ulrich Drepper2009-04-071-2/+2
| | | | depending libcrypt on -lfreebl3.
* * string/strverscmp.c (__strverscmp): Fix last cleanups. cvs/fedora-glibc-20090407T0657Ulrich Drepper2009-04-071-1/+1
| | | | | | * string/tst-svc.input: Add new test case. * string/tst-svc.expect: Adjust. * string/Makefile: Don't ignore tst-svc error.
* * locales/ks_IN: New file.Ulrich Drepper2009-04-061-3/+3
| | | | | Patch by Mohammad Nayeem <mohammad.nayeem@gmail.com> and Pravin Satpute <psatpute@redhat.com>.
* * sysdeps/x86_64/strchr.S: Likewise.Ulrich Drepper2009-04-061-1/+1
|
* * sysdeps/x86_64/strlen.S: Optimize by using SSE2 instructions.Ulrich Drepper2009-04-051-1/+4
|
* * misc/Makefile (routines): Add preadv, preadv64, pwritev, pwritev64.Ulrich Drepper2009-04-031-1/+12
| | | | | | | | | | | | | | | | | | | | | | * misc/Versions: Export preadv, preadv64, pwritev, pwritev64 for GLIBC_2.10. * misc/sys/uio.h: Declare preadv, preadv64, pwritev, pwritev64. * sysdeps/unix/sysv/linux/kernel-features.h: Add entries for preadv and pwritev. * misc/preadv.c: New file. * misc/preadv64.c: New file. * misc/pwritev.c: New file. * misc/pwritev64.c: New file. * sysdeps/posx/preadv.c: New file. * sysdeps/posx/preadv64.c: New file. * sysdeps/posx/pwritev.c: New file. * sysdeps/posx/pwritev64.c: New file. * sysdeps/unix/sysv/linux/preadv.c: New file. * sysdeps/unix/sysv/linux/preadv64.c: New file. * sysdeps/unix/sysv/linux/pwritev.c: New file. * sysdeps/unix/sysv/linux/pwritev64.c: New file. * sysdeps/unix/sysv/linux/wordsize-64/preadv64.c: New file. * sysdeps/unix/sysv/linux/wordsize-64/pwritev64.c: New file.