From: Ulrich Drepper Date: Mon, 3 Nov 2003 19:13:38 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/glibc-2_3_3~93 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=271766771fba3c180c208424ff20aa5e5215bbbc;p=thirdparty%2Fglibc.git Update. 2003-11-03 Ulrich Drepper * sysdeps/pthread/tst-timer.c (main): Initialize sigev2.sigev_value as well. --- diff --git a/nptl/ChangeLog b/nptl/ChangeLog index 0ebe4744bbd..beb3212529d 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,3 +1,8 @@ +2003-11-03 Ulrich Drepper + + * sysdeps/pthread/tst-timer.c (main): Initialize + sigev2.sigev_value as well. + 2003-10-15 Roland McGrath * sysdeps/pthread/configure.in: Barf if visibility attribute support diff --git a/nptl/sysdeps/pthread/tst-timer.c b/nptl/sysdeps/pthread/tst-timer.c index 54d6b6ae933..f2577b75cd6 100644 --- a/nptl/sysdeps/pthread/tst-timer.c +++ b/nptl/sysdeps/pthread/tst-timer.c @@ -84,6 +84,9 @@ main (void) sigev2.sigev_notify = SIGEV_THREAD; sigev2.sigev_notify_function = notify_func1; sigev2.sigev_notify_attributes = NULL; + /* It is unnecessary to do the following but to set a good example + we do it anyhow. */ + sigev2.sigev_value = 0; setvbuf (stdout, 0, _IOLBF, 0);