diff options
author | Ulrich Drepper <drepper@redhat.com> | 2007-10-28 19:46:50 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2007-10-28 19:46:50 +0000 |
commit | f160a450c930f214f218f0c975abf188d367716f (patch) | |
tree | 110fc0d723c02447cc18d452d4886aa88f870efc /nptl/sysdeps/unix/sysv/linux/timer_delete.c | |
parent | 22c915ac42b6890383da4b1b0b63f9a15408a01c (diff) | |
download | glibc-f160a450c930f214f218f0c975abf188d367716f.tar glibc-f160a450c930f214f218f0c975abf188d367716f.tar.gz glibc-f160a450c930f214f218f0c975abf188d367716f.tar.bz2 glibc-f160a450c930f214f218f0c975abf188d367716f.zip |
[BZ #5204]
* crypt/sha256c-test.c: Define TIMEOUT to 6 for ancient hardware.
* crypt/sha512c-test.c: Likewise.
Diffstat (limited to 'nptl/sysdeps/unix/sysv/linux/timer_delete.c')
-rw-r--r-- | nptl/sysdeps/unix/sysv/linux/timer_delete.c | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/nptl/sysdeps/unix/sysv/linux/timer_delete.c b/nptl/sysdeps/unix/sysv/linux/timer_delete.c index 35055212a3..510541fc2a 100644 --- a/nptl/sysdeps/unix/sysv/linux/timer_delete.c +++ b/nptl/sysdeps/unix/sysv/linux/timer_delete.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003 Free Software Foundation, Inc. +/* Copyright (C) 2003, 2007 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@redhat.com>, 2003. @@ -54,6 +54,27 @@ timer_delete (timerid) if (res == 0) { + if (kt->sigev_notify == SIGEV_THREAD) + { + /* Remove the timer from the list. */ + pthread_mutex_lock (&__active_timer_sigev_thread_lock); + if (__active_timer_sigev_thread == kt) + __active_timer_sigev_thread = kt->next; + else + { + struct timer *prevp = __active_timer_sigev_thread; + while (prevp->next != NULL) + if (prevp->next == kt) + { + prevp->next = kt->next; + break; + } + else + prevp = prevp->next; + } + pthread_mutex_unlock (&__active_timer_sigev_thread_lock); + } + # ifndef __ASSUME_POSIX_TIMERS /* We know the syscall support is available. */ __no_posix_timers = 1; |