diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-07-24 22:16:09 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-07-24 22:16:09 +0000 |
commit | f369623d6d7af1f7cddfa7bcda413b88107db2e6 (patch) | |
tree | 73473a65cf454c625a71426eaadf42ef5fd1b075 /linuxthreads | |
parent | 0db597422f2e5aa5a15342b95b56a0c1247af27f (diff) | |
download | glibc-f369623d6d7af1f7cddfa7bcda413b88107db2e6.tar.gz glibc-f369623d6d7af1f7cddfa7bcda413b88107db2e6.tar.xz glibc-f369623d6d7af1f7cddfa7bcda413b88107db2e6.zip |
Update.
2001-07-22 Bruno Haible <haible@clisp.cons.org> * intl/libintl.h (ngettext, dngettext, dcngettext): Use both msgid1 and msgid2 for printf format argument checking.
Diffstat (limited to 'linuxthreads')
-rw-r--r-- | linuxthreads/ChangeLog | 5 | ||||
-rw-r--r-- | linuxthreads/tst-context.c | 5 |
2 files changed, 9 insertions, 1 deletions
diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog index 8644edae60..36ae2fa51d 100644 --- a/linuxthreads/ChangeLog +++ b/linuxthreads/ChangeLog @@ -1,3 +1,8 @@ +2001-07-24 Ulrich Drepper <drepper@redhat.com> + + * tst-context.c (main): Print explanation before bailing out + because context handling is not supported. + 2001-07-23 Ulrich Drepper <drepper@redhat.com> * Makefile (tests): Add tst-context. diff --git a/linuxthreads/tst-context.c b/linuxthreads/tst-context.c index cf4783dec1..82a877cffe 100644 --- a/linuxthreads/tst-context.c +++ b/linuxthreads/tst-context.c @@ -67,7 +67,10 @@ main (void) if (getcontext (&mctx) != 0) { if (errno == ENOSYS) - exit (0); + { + puts ("context handling not supported"); + exit (0); + } printf ("%s: getcontext: %m\n", __FUNCTION__); exit (1); |