mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
This test relies on the concurrency level being 1; make it so.
This commit is contained in:
parent
c92dcdd99c
commit
5bb9c67cc7
2 changed files with 6 additions and 0 deletions
|
|
@ -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 a new issue