summaryrefslogtreecommitdiffstats
path: root/fastos/src/tests/thread_joinwait_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'fastos/src/tests/thread_joinwait_test.cpp')
-rw-r--r--fastos/src/tests/thread_joinwait_test.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/fastos/src/tests/thread_joinwait_test.cpp b/fastos/src/tests/thread_joinwait_test.cpp
index fc96b49f926..a26501fef01 100644
--- a/fastos/src/tests/thread_joinwait_test.cpp
+++ b/fastos/src/tests/thread_joinwait_test.cpp
@@ -17,7 +17,7 @@ class Thread_JoinWait_Test : public ThreadTestBase
sprintf(testName, "Single Thread Join Wait Multiple Test %d", variant);
TestHeader(testName);
- FastOS_ThreadPool pool(128*1024);
+ FastOS_ThreadPool pool;
const int testThreads=5;
int lastThreadNum = testThreads-1;
@@ -35,8 +35,7 @@ class Thread_JoinWait_Test : public ThreadTestBase
{
jobs[i].code = WAIT_FOR_THREAD_TO_FINISH;
jobs[i].mutex = &jobMutex;
- jobs[i].ownThread = pool.NewThread(this,
- static_cast<void *>(&jobs[i]));
+ jobs[i].ownThread = pool.NewThread(this, static_cast<void *>(&jobs[i]));
rc = (jobs[i].ownThread != nullptr);
Progress(rc, "Creating Thread %d", i+1);