From: Roland McGrath Date: Fri, 6 Feb 2015 20:30:38 +0000 (-0800) Subject: Don't set unused field in rt/tst-timer2. X-Git-Tag: upstream/2.30~6394 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f50ad78b919d7c6302e16d56f63c356abf5637b5;p=external%2Fglibc.git Don't set unused field in rt/tst-timer2. --- diff --git a/ChangeLog b/ChangeLog index f8541af..5b694e4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2015-02-06 Roland McGrath + * 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. + * nptl/tst-align2.c: Moved ... * sysdeps/unix/sysv/linux/tst-align-clone.c: ... here. * nptl/Makefile (tests): Remove tst-align2. diff --git a/rt/tst-timer2.c b/rt/tst-timer2.c index 60026c1..b2ce987 100644 --- a/rt/tst-timer2.c +++ b/rt/tst-timer2.c @@ -30,9 +30,8 @@ do_test (void) itval.it_value.tv_nsec = 0; sigev.sigev_notify = SIGEV_THREAD; - sigev.sigev_signo = SIGRTMIN; sigev.sigev_notify_function = thread; - sigev.sigev_notify_attributes = 0; + sigev.sigev_notify_attributes = NULL; sigev.sigev_value.sival_ptr = (void *) &timerId; for (i = 0; i < 100; i++)