summaryrefslogtreecommitdiff
path: root/libpthread/pthread/pt-create.c
diff options
context:
space:
mode:
authormarcus <marcus>2004-11-01 17:28:42 +0000
committermarcus <marcus>2004-11-01 17:28:42 +0000
commitd0e6329906ed3ef13c32166ef8a484cfb14d723e (patch)
treea15dec64148615a8c9762aac98417c7da58f07fb /libpthread/pthread/pt-create.c
parentca4a13f4e75baca0ee96af58d3f5264fa9c9f28c (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 'libpthread/pthread/pt-create.c')
-rw-r--r--libpthread/pthread/pt-create.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpthread/pthread/pt-create.c b/libpthread/pthread/pt-create.c
index 95df677..8d348fb 100644
--- a/libpthread/pthread/pt-create.c
+++ b/libpthread/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. */