From c0f79a04a778d0a42ffd437fcd37739d5839a716 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 8 Jun 2000 21:13:20 +0000 Subject: Update. * sysdeps/pthread/timer_routines.c (init_module): Use THREAD_MAXNODES threads. --- linuxthreads/ChangeLog | 3 +++ linuxthreads/sysdeps/pthread/timer_routines.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) (limited to 'linuxthreads') diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog index 9571ef0caf..168d1f2583 100644 --- a/linuxthreads/ChangeLog +++ b/linuxthreads/ChangeLog @@ -1,5 +1,8 @@ 2000-06-08 Ulrich Drepper + * sysdeps/pthread/timer_routines.c (init_module): Use + THREAD_MAXNODES threads. + * sysdeps/pthread/posix-timer.h (struct timer_node): Add creator_pid. * sysdeps/pthread/timer_create.c: Fill in creator_pid. * sysdeps/pthread/timer_routines.c (thread_expire_timer): Send signal diff --git a/linuxthreads/sysdeps/pthread/timer_routines.c b/linuxthreads/sysdeps/pthread/timer_routines.c index cd99c9f12f..becb110010 100644 --- a/linuxthreads/sysdeps/pthread/timer_routines.c +++ b/linuxthreads/sysdeps/pthread/timer_routines.c @@ -163,7 +163,7 @@ init_module (void) __timer_array[i].inuse = 0; } - for (i = 0; i < THREAD_MAXNODES - 1; ++i) + for (i = 0; i < THREAD_MAXNODES; ++i) list_append (&thread_free_list, &thread_array[i].links); thread_init (&__timer_signal_thread, 0); -- cgit v1.2.1