From f0377954d7c324c0fe320eb1ca22ea46837e9da3 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 28 Aug 2002 06:47:35 +0000 Subject: Update. 2002-08-08 Jakub Jelinek * sysdeps/unix/sysv/linux/bits/local_lim.h (PTHREAD_THREADS_MAX): Bump to 16384. * manager.c (__pthread_handles): Remove. * pthandles.c: New file. * pthread.c (__pthread_initialize_minimal): Initialize __pthread_handles[0] and __pthread_handles[1]. * Makefile (libpthread-routines): Add pthandles (must be last). --- linuxthreads/pthandles.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 linuxthreads/pthandles.c (limited to 'linuxthreads/pthandles.c') diff --git a/linuxthreads/pthandles.c b/linuxthreads/pthandles.c new file mode 100644 index 0000000000..4d2ac1940d --- /dev/null +++ b/linuxthreads/pthandles.c @@ -0,0 +1,6 @@ +#include +#include "pthread.h" +#include "internals.h" + +/* Array of active threads. Entry 0 is reserved for the initial thread. */ +struct pthread_handle_struct __pthread_handles[PTHREAD_THREADS_MAX]; -- cgit v1.2.3