diff options
author | Ulrich Drepper <drepper@redhat.com> | 2007-04-28 04:03:38 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2007-04-28 04:03:38 +0000 |
commit | f672076efaa2c99d1dac92070f1723a8a6378456 (patch) | |
tree | 8f9025ebba4470e48a43dd1dd814ba1c8f993734 /nptl/sysdeps/unix/sysv | |
parent | 109f51f2b2f3331cccc1027f00ef0c752c4ffdaf (diff) | |
download | glibc-f672076efaa2c99d1dac92070f1723a8a6378456.tar.gz glibc-f672076efaa2c99d1dac92070f1723a8a6378456.tar.xz glibc-f672076efaa2c99d1dac92070f1723a8a6378456.zip |
[BZ #4306]
2007-04-27 Ulrich Drepper <drepper@redhat.com> [BZ #4306] * sysdeps/unix/sysv/linux/timer_create.c (timer_create): Initialize the whole sigevent structure to appease valgrind.
Diffstat (limited to 'nptl/sysdeps/unix/sysv')
-rw-r--r-- | nptl/sysdeps/unix/sysv/linux/timer_create.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/nptl/sysdeps/unix/sysv/linux/timer_create.c b/nptl/sysdeps/unix/sysv/linux/timer_create.c index 5e99513950..497068b554 100644 --- a/nptl/sysdeps/unix/sysv/linux/timer_create.c +++ b/nptl/sysdeps/unix/sysv/linux/timer_create.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003,2004 Free Software Foundation, Inc. +/* Copyright (C) 2003,2004, 2007 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@redhat.com>, 2003. @@ -193,12 +193,11 @@ timer_create (clock_id, evp, timerid) PTHREAD_CREATE_DETACHED); /* Create the event structure for the kernel timer. */ - struct sigevent sev; - sev.sigev_value.sival_ptr = newp; - sev.sigev_signo = SIGTIMER; - sev.sigev_notify = SIGEV_SIGNAL | SIGEV_THREAD_ID; - /* This is the thread ID of the helper thread. */ - sev._sigev_un._pad[0] = __helper_tid; + struct sigevent sev = + { .sigev_value.sival_ptr = newp, + .sigev_signo = SIGTIMER, + .sigev_notify = SIGEV_SIGNAL | SIGEV_THREAD_ID, + ._sigev_un = { ._pad = { [0] = __helper_tid } } }; /* Create the timer. */ INTERNAL_SYSCALL_DECL (err); |