diff options
author | Marcus Brinkmann <marcus@gnu.org> | 2004-11-01 17:28:43 +0000 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2009-04-06 22:40:14 +0200 |
commit | 8765659aee80734a9d0a68a67c20c43a0d97eee4 (patch) | |
tree | 2b1c4e602a8fe119e1622d7f57a9701d45eb9407 /pthread/pt-create.c | |
parent | 347e1b07eb34cd37d37c3fd8f4a7e6645f3d0971 (diff) |
2004-11-01 Marcus Brinkmann <marcus@gnu.org>
* pthread/pt-create.c (__pthread_total): Change type to uatomic32_t.
* pthread/pt-internal.h (__pthread_total): Likewise in declaration.
Diffstat (limited to 'pthread/pt-create.c')
-rw-r--r-- | pthread/pt-create.c | 2 |
1 files changed, 1 insertions, 1 deletions
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. */ |