This test relies on the concurrency level being 1; make it so.

This commit is contained in:
Daniel Eischen 2003-10-20 04:23:49 +00:00
parent c92dcdd99c
commit 5bb9c67cc7
2 changed files with 6 additions and 0 deletions

View File

@ -1455,6 +1455,9 @@ int main (int argc, char *argv[])
act.sa_flags = SA_RESTART;
sigaction (SIGINT, &act, NULL);
/* This test relies on the concurrency level being 1. */
pthread_setconcurrency(1);
/*
* Initialize the thread attribute.
*/

View File

@ -1455,6 +1455,9 @@ int main (int argc, char *argv[])
act.sa_flags = SA_RESTART;
sigaction (SIGINT, &act, NULL);
/* This test relies on the concurrency level being 1. */
pthread_setconcurrency(1);
/*
* Initialize the thread attribute.
*/