From: Jakub Jelinek Date: Mon, 21 May 2007 22:12:40 +0000 (+0000) Subject: * tst-robust9.c (do_test): Don't fail if ENABLE_PI and X-Git-Tag: cvs/glibc-2_6_1~80 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2c9718f3b34095d764128c61d1ae8f26354b66de;p=thirdparty%2Fglibc.git * tst-robust9.c (do_test): Don't fail if ENABLE_PI and pthread_mutex_init failed with ENOTSUP. 2007-05-21 Jakub Jelinek * tst-robust9.c (do_test): Don't fail if ENABLE_PI and pthread_mutex_init failed with ENOTSUP. --- diff --git a/nptl/ChangeLog b/nptl/ChangeLog index db7b86f2fba..ed00f55a229 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,3 +1,8 @@ +2007-05-21 Jakub Jelinek + + * tst-robust9.c (do_test): Don't fail if ENABLE_PI and + pthread_mutex_init failed with ENOTSUP. + 2007-05-19 Ulrich Drepper * allocatestack.c (__wait_lookup_done): New function. diff --git a/nptl/tst-robust9.c b/nptl/tst-robust9.c index 20cbd062dc3..1d6ba179be9 100644 --- a/nptl/tst-robust9.c +++ b/nptl/tst-robust9.c @@ -54,6 +54,13 @@ do_test (void) } #endif err = pthread_mutex_init (&m, &ma); +#ifdef ENABLE_PI + if (err == ENOTSUP) + { + puts ("PI robust mutexes not supported"); + return 0; + } +#endif if (err) { puts ("pthread_mutex_init");