diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2004-02-11 23:48:50 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2004-02-11 23:48:50 +0000 |
commit | 082e680bd54e999f2bb4eb77141958938b1e9ee9 (patch) | |
tree | 203c45b85ca608e1550d8ffc459456fc9cf0b30b /libc/string | |
parent | 17c21765b4a97c6f0b74ba8466073e5a3f97cdee (diff) |
New stdio core. Should be more maintainable. Fixes a couple of bugs.
Codepaths streamlined. Improved performance for nonthreaded apps
when linked with a thread-enabled libc.
Minor iconv bug and some locale/thread related startup issues fixed.
These showed up in getting a gcj-compiled java helloworld app running.
Removed some old extension functions... _stdio_fdout and _stdio_fsfopen.
Diffstat (limited to 'libc/string')
-rw-r--r-- | libc/string/wstring.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/libc/string/wstring.c b/libc/string/wstring.c index ef6e5cdf5..efe41c37a 100644 --- a/libc/string/wstring.c +++ b/libc/string/wstring.c @@ -36,7 +36,6 @@ * mapping of signal strings (alpha, mips, hppa, sparc). */ -#define _STDIO_UTILITY #define _GNU_SOURCE #include <string.h> #include <strings.h> @@ -48,6 +47,7 @@ #include <signal.h> #include <assert.h> #include <locale.h> +#include <bits/uClibc_uintmaxtostr.h> #ifdef WANT_WIDE #include <wchar.h> @@ -2326,14 +2326,7 @@ void psignal(int signum, register const char *message) message = (sep += 2); /* or passed an empty string. */ } -#if 1 fprintf(stderr, "%s%s%s\n", message, sep, strsignal(signum)); -#else - /* Note: Assumes stderr not closed or buffered. */ - __STDIO_THREADLOCK(stderr); - _stdio_fdout(STDERR_FILENO, message, sep, strsignal(signum)); - __STDIO_THREADUNLOCK(stderr); -#endif } #endif |