1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-12-24 17:51:17 +03:00

* rt/tst-timer2.c: New file.

* rt/Makefile (tests): Add it.
This commit is contained in:
Roland McGrath
2003-07-29 09:32:03 +00:00
parent 172ce013bd
commit a7f6c66ec3
9 changed files with 93 additions and 12 deletions

View File

@@ -296,7 +296,7 @@ thread_cleanup (void *val)
thread->current_timer = 0;
if (list_isempty (&thread->timer_queue))
__timer_thread_dealloc (thread);
__timer_thread_dealloc (thread);
else
(void) __timer_thread_start (thread);
@@ -540,10 +540,7 @@ __timer_thread_find_matching (const pthread_attr_t *desired_attr,
if (thread_attr_compare (desired_attr, &candidate->attr)
&& desired_clock_id == candidate->clock_id)
{
list_unlink (iter);
return candidate;
}
return candidate;
iter = list_next (iter);
}