From 8765659aee80734a9d0a68a67c20c43a0d97eee4 Mon Sep 17 00:00:00 2001 From: Marcus Brinkmann Date: Mon, 1 Nov 2004 17:28:43 +0000 Subject: 2004-11-01 Marcus Brinkmann * pthread/pt-create.c (__pthread_total): Change type to uatomic32_t. * pthread/pt-internal.h (__pthread_total): Likewise in declaration. --- ChangeLog | 3 +++ pthread/pt-create.c | 2 +- pthread/pt-internal.h | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index ad567ab..d9debc5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2004-11-01 Marcus Brinkmann + * pthread/pt-create.c (__pthread_total): Change type to uatomic32_t. + * pthread/pt-internal.h (__pthread_total): Likewise in declaration. + * pthread/pt-internal.h: Include , not . (__pthread_total): Change type of declaration to uatomic_max_t. * pthread/pt-alloc.c: Include , not . diff --git a/pthread/pt-create.c b/pthread/pt-create.c index 95df677..8d348fb 100644 --- a/pthread/pt-create.c +++ b/pthread/pt-create.c @@ -33,7 +33,7 @@ /* The total number of pthreads currently active. This is defined here since it would be really stupid to have a threads-using program that doesn't call `pthread_create'. */ -uatomic_max_t __pthread_total; +uatomic32_t __pthread_total; /* The entry-point for new threads. */ diff --git a/pthread/pt-internal.h b/pthread/pt-internal.h index af3dd87..436f870 100644 --- a/pthread/pt-internal.h +++ b/pthread/pt-internal.h @@ -126,7 +126,7 @@ __pthread_dequeue (struct __pthread *thread) element = element->next) /* The total number of threads currently active. */ -extern uatomic_max_t __pthread_total; +extern uatomic32_t __pthread_total; /* The total number of thread IDs currently in use, or on the list of available thread IDs. */ -- cgit v1.2.3