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

This commit is contained in:
deischen 2003-10-20 04:23:49 +00:00
parent 18fc7b26c7
commit ef384a447b
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.
*/