From 233963756b2ef272f8876afec2a2bb629b425e0c Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 7 Aug 1996 23:50:59 +0000 Subject: Update. Thu Aug 8 01:41:43 1996 Ulrich Drepper * elf/Makefile: Undo change of Tue Aug 6 14:27:11 1996. * elf/dl-support: Add definition of `_dl_sysdep_read_whole_file'. Thu Aug 8 01:15:59 1996 Ulrich Drepper * sysdeps/i386/fpu_control.h (_FPU_DEFAULT, _FPU_IEEE): Set to 0x137f to allow long double operations. Sun Aug 4 13:12:05 1996 Richard Henderson Bug Fixes: * nss/nsswitch.c (_res): Remove redundant variable definition. The real one is in resolve/res_init.c, and having both prevents using -fno-common when building the shared library. * sunrpc/rpc_prot.c (_null_auth): Same. Original is in rpc_common.c. * sysdeps/unix/sysv/linux/alpha/brk.S: When PIC, define __curbrk as a .bss object not a COMMON symbol. * sysdeps/alpha/bsd-_setjmp.S, sysdeps/alpha/bsd-setjmp.S: Must load $gp before referencing __sigsetjmp symbol. Retain LITUSE for same. Optimizations: * sysdeps/alpha/strlen.S: Rearrange first-word setup and thense the main loop for better dual-issue on EV5. Rearrange binary search to pipeline better and trim one instruction. Cosmetic Changes: * time/localtime.c (localtime_r): Move lock declaration back next to the comment where it was before the 960724 change. * INSTALL, manual/maint.texi: alpha-gnu-linux -> alpha-ANYTHING-linux. The second word is supposed to be the hardware manufacturer. * sysdeps/alpha/_mcount.S: Retain LITUSE for __mcount. * sysdeps/alpha/setjmp.S: Retain LITUSE for __sigsetjmp_aux. * sysdeps/alpha/divrem.h: More local labels, retain LITUSE for _mcount. * sysdeps/alpha/alphaev5/add_n.S, sysdeps/alpha/alphaev5/lshift.S, sysdeps/alpha/alphaev5/rshift.S, sysdeps/alpha/alphaev5/sub_n.S: Same cleanups as with EV4 GMP stuff. Tue Jul 25 03:30:56 1996 Richard Henderson * sysdeps/unix/sysv/linux/Makefile [misc] (sysdep_routines): Add clone. * sysdeps/unix/sysv/linux/alpha/clone.S: New file. * sysdeps/unix/sysv/linux/i386/clone.S: New file. Sun Aug 4 00:12:41 1996 David Mosberger-Tang * sysdeps/unix/sysv/linux/gnu/types.h: Declare __fd_mask as `unsigned long'. * misc/sys/select.h: Declare fd_mask as alias of __fd_mask. Sat Aug 3 16:20:02 1996 David Mosberger-Tang * sysdeps/unix/sysv/linux/alpha/ioperm.c (platform): Add entry for Mikasa. * socket/sys/socket.h (send, __send, sendto): Declare buffer pointer as __const. * string/tester.c (main): Test stpncpy. * sysdeps/generic/stpncpy.c (__stpncpy): Fix so it works without segfault when called with an N that is not a multiple of four and src[N-1]=='\0'. * misc/syslog.c (LogType): New variable. (openlog): If connect() with SOCK_DGRAM fails with EPROTOTYPE, try again with SOCK_STREAM (the Linux syslogd uses a socket of the latter type). (vsyslog): When LogType==SOCK_STREAM, also send ASCII NUL terminator as a record-delimiter. If __send(LogFile) fails, call closelog() so logfile gets re-opened next time. Wed Aug 7 15:15:14 1996 Ulrich Drepper * elf/dl-open (_dl_open): Add cast to avoid warning. * manual/memory.texi: Improve some examples to give readers better advice: Use `stpcpy' instead of `strcat' if possible. * manual/string.texi: Document `strtok_r' and `strtok'. * sunrpc/Makefile: Move `+gccwarn' definition before inclusion of Makeconfig. [$(cross-compiling)=no]: Change test before making librpcsvc to this from $(cross-compile). Reported by Andreas Schwab. Tue Aug 6 14:27:11 1996 Ulrich Drepper * elf/Makefile (routines): Move dl-sysdep to here... (rtld-routines): ...from here. This should make static linking work again. * locale/setlocale.c: Add local variable `lock' and add code to `setlocale' to avoid simultaneous changing of global data. * catgets/catgets.c (catopen): Use `__strdup' instead of `strdup'. * catgets/open_catalog (__open_catalog): Use `__stpcpy', `__open', `__fstat', `__read', `__mmap', `__munmap' and `__close' instead of unprotected names. --- wcsmbs/mbrtowc.c | 3 ++- wcsmbs/mbsrtowcs.c | 3 ++- wcsmbs/wchar.h | 9 ++++++++- wcsmbs/wcrtomb.c | 3 ++- wcsmbs/wcsrtombs.c | 3 ++- 5 files changed, 16 insertions(+), 5 deletions(-) (limited to 'wcsmbs') diff --git a/wcsmbs/mbrtowc.c b/wcsmbs/mbrtowc.c index 07fb0c4bff..056f7be517 100644 --- a/wcsmbs/mbrtowc.c +++ b/wcsmbs/mbrtowc.c @@ -28,7 +28,7 @@ Boston, MA 02111-1307, USA. */ static mbstate_t internal; size_t -mbrtowc (wchar_t *pwc, const char *s, size_t n, mbstate_t *ps) +__mbrtowc (wchar_t *pwc, const char *s, size_t n, mbstate_t *ps) { size_t used = 0; @@ -128,3 +128,4 @@ mbrtowc (wchar_t *pwc, const char *s, size_t n, mbstate_t *ps) return (size_t) -2; } +weak_alias (__mbrtowc, mbrtowc) diff --git a/wcsmbs/mbsrtowcs.c b/wcsmbs/mbsrtowcs.c index 712b199271..d7305d6904 100644 --- a/wcsmbs/mbsrtowcs.c +++ b/wcsmbs/mbsrtowcs.c @@ -30,7 +30,7 @@ Boston, MA 02111-1307, USA. */ static mbstate_t internal; size_t -mbsrtowcs (dst, src, len, ps) +__mbsrtowcs (dst, src, len, ps) wchar_t *dst; const char **src; size_t len; @@ -135,3 +135,4 @@ mbsrtowcs (dst, src, len, ps) return written; } +weak_alias (__mbsrtowcs, mbsrtowcs) diff --git a/wcsmbs/wchar.h b/wcsmbs/wchar.h index 0346364b44..db3c08d833 100644 --- a/wcsmbs/wchar.h +++ b/wcsmbs/wchar.h @@ -151,10 +151,13 @@ extern int mbsinit __P ((__const mbstate_t *__ps)); /* Write wide character representation of multibyte character pointed to by S to PWC. */ +extern size_t __mbrtowc __P ((wchar_t *__pwc, __const char *__s, size_t __n, + mbstate_t *__p)); extern size_t mbrtowc __P ((wchar_t *__pwc, __const char *__s, size_t __n, mbstate_t *__p)); /* Write multibyte representation of wide character WC to S. */ +extern size_t __wcrtomb __P ((char *__s, wchar_t __wc, mbstate_t *__ps)); extern size_t wcrtomb __P ((char *__s, wchar_t __wc, mbstate_t *__ps)); /* Return number of bytes in multibyte character pointed to by S. */ @@ -165,16 +168,20 @@ extern size_t mbrlen __P ((__const char *__s, size_t __n, mbstate_t *__ps)); && (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7)) /* Define inline function as optimization. */ extern __inline size_t mbrlen (__const char *s, size_t n, mbstate_t *ps) -{ return ps != NULL ? mbrtowc (NULL, s, n, ps) : __mbrlen (s, n, NULL); } +{ return ps != NULL ? __mbrtowc (NULL, s, n, ps) : __mbrlen (s, n, NULL); } #endif /* Write wide character representation of multibyte character string SRC to DST. */ +extern size_t __mbsrtowcs __P ((wchar_t *__dst, __const char **__src, + size_t __len, mbstate_t *__ps)); extern size_t mbsrtowcs __P ((wchar_t *__dst, __const char **__src, size_t __len, mbstate_t *__ps)); /* Write multibyte character representation of wide character string SRC to DST. */ +extern size_t __wcsrtombs __P ((char *__dst, __const wchar_t **__src, + size_t __len, mbstate_t *__ps)); extern size_t wcsrtombs __P ((char *__dst, __const wchar_t **__src, size_t __len, mbstate_t *__ps)); diff --git a/wcsmbs/wcrtomb.c b/wcsmbs/wcrtomb.c index eb007a69b9..052a5b951b 100644 --- a/wcsmbs/wcrtomb.c +++ b/wcsmbs/wcrtomb.c @@ -38,7 +38,7 @@ static const unsigned char encoding_byte[] = static mbstate_t internal; size_t -wcrtomb (char *s, wchar_t wc, mbstate_t *ps) +__wcrtomb (char *s, wchar_t wc, mbstate_t *ps) { char fake[1]; size_t written = 0; @@ -89,3 +89,4 @@ wcrtomb (char *s, wchar_t wc, mbstate_t *ps) return written; } +weak_alias (__wcrtomb, wcrtomb) diff --git a/wcsmbs/wcsrtombs.c b/wcsmbs/wcsrtombs.c index 99ca6acc5b..999e291eb2 100644 --- a/wcsmbs/wcsrtombs.c +++ b/wcsmbs/wcsrtombs.c @@ -40,7 +40,7 @@ static const unsigned char encoding_byte[] = static mbstate_t internal; size_t -wcsrtombs (dst, src, len, ps) +__wcsrtombs (dst, src, len, ps) char *dst; const wchar_t **src; size_t len; @@ -122,3 +122,4 @@ wcsrtombs (dst, src, len, ps) return written; } +weak_alias (__wcsrtombs, wcsrtombs) -- cgit v1.2.3