This test relies on the concurrency level being 1; make it so.
This commit is contained in:
parent
c92dcdd99c
commit
5bb9c67cc7
@ -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.
|
||||
*/
|
||||
|
@ -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.
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user