diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-11-04 23:43:40 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-11-04 23:43:40 +0000 |
commit | c28422b575d8399fc3d5ce8e50cbde83c58b647c (patch) | |
tree | 4c6a40e643fb0b1efed9ece8dc153e771f0bc51f /nptl/sysdeps/pthread/tst-timer.c | |
parent | 9378784537d0a4cd4e630aa360d0ae838dfcf500 (diff) | |
download | glibc-c28422b575d8399fc3d5ce8e50cbde83c58b647c.tar.gz |
Update.
2003-11-04 Ulrich Drepper <drepper@redhat.com>
* sysdeps/pthread/bits/stdio-lock.h: Use lll_*lock instead of
lll_mutex_*lock macros to skip atomic operations on some archs.
Diffstat (limited to 'nptl/sysdeps/pthread/tst-timer.c')
-rw-r--r-- | nptl/sysdeps/pthread/tst-timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/sysdeps/pthread/tst-timer.c b/nptl/sysdeps/pthread/tst-timer.c index f2577b75cd..f19fe364ba 100644 --- a/nptl/sysdeps/pthread/tst-timer.c +++ b/nptl/sysdeps/pthread/tst-timer.c @@ -86,7 +86,7 @@ main (void) 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; + sigev2.sigev_value.sival_ptr = NULL; setvbuf (stdout, 0, _IOLBF, 0); |