summaryrefslogtreecommitdiff
path: root/nptl/tst-cond16.c
diff options
context:
space:
mode:
Diffstat (limited to 'nptl/tst-cond16.c')
-rw-r--r--nptl/tst-cond16.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/nptl/tst-cond16.c b/nptl/tst-cond16.c
index 032677adcc..b3bfb90bd4 100644
--- a/nptl/tst-cond16.c
+++ b/nptl/tst-cond16.c
@@ -28,7 +28,7 @@ pthread_cond_t cv = PTHREAD_COND_INITIALIZER;
pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
bool n, exiting;
FILE *f;
-int count;
+enum { count = 8 }; /* Number of worker threads. */
void *
tf (void *dummy)
@@ -71,11 +71,6 @@ do_test (void)
return 1;
}
- count = sysconf (_SC_NPROCESSORS_ONLN);
- if (count <= 0)
- count = 1;
- count *= 4;
-
pthread_t th[count];
pthread_attr_t attr;
int i, ret, sz;