From 1ac074e66e8ee0e548742fcc79a705284448aea6 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Fri, 6 Feb 2015 12:30:58 -0800 Subject: [PATCH] Conditionalize use of SIGRTMIN in nptl/tst-locale1.c. --- ChangeLog | 2 ++ nptl/tst-locale1.c | 6 +++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 5b694e4133..76bfa13b20 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2015-02-06 Roland McGrath + * nptl/tst-locale1.c (useless): Use SIGRTMIN only if it's defined. + * rt/tst-timer2.c (do_test): Don't initialize SIGEV.sigev_signo, which will not be used. Use NULL rather than 0 for .sigev_notify_attributes. diff --git a/nptl/tst-locale1.c b/nptl/tst-locale1.c index 2ee4c3fbce..887b9a6dd7 100644 --- a/nptl/tst-locale1.c +++ b/nptl/tst-locale1.c @@ -12,7 +12,11 @@ useless (void) { pthread_t th; pthread_create (&th, 0, (void *(*) (void *)) useless, 0); + int result = 0; +#ifdef SIGRTMIN /* This is to check __libc_current_sigrt* can be used in statically linked apps. */ - return SIGRTMIN; + result = SIGRTMIN; +#endif + return result; }