From 176152b19d806ffce141ceaa2c4e2a6a8529dd92 Mon Sep 17 00:00:00 2001
From: Nicolas Pope <nwpope@utu.fi>
Date: Sat, 15 Aug 2020 09:42:03 +0300
Subject: [PATCH] More attempts to fix windows hang

---
 components/common/cpp/include/ctpl_stl.h |  2 ++
 components/streams/test/recsend_unit.cpp | 21 +++++++++++++++++----
 2 files changed, 19 insertions(+), 4 deletions(-)

diff --git a/components/common/cpp/include/ctpl_stl.h b/components/common/cpp/include/ctpl_stl.h
index fac0de42a..245c62425 100644
--- a/components/common/cpp/include/ctpl_stl.h
+++ b/components/common/cpp/include/ctpl_stl.h
@@ -93,6 +93,8 @@ namespace ctpl {
 
         size_t q_size() { return this->q.size(); }
 
+		void restart(int nThreads) { if (!this->isDone) this->stop(true); this->init(); this->resize(nThreads); }
+
         // change the number of threads in the pool
         // should be called from one thread, otherwise be careful to not interleave, also with this->stop()
         // nThreads must be >= 0
diff --git a/components/streams/test/recsend_unit.cpp b/components/streams/test/recsend_unit.cpp
index 3328067d1..077270b93 100644
--- a/components/streams/test/recsend_unit.cpp
+++ b/components/streams/test/recsend_unit.cpp
@@ -77,6 +77,8 @@ TEST_CASE( "Send and receiver via encoding" ) {
 	receiver->set("frameset_buffer_size", 0);
 	sender->setStream(&stream);
 
+	//ftl::pool.restart(4);
+
 	ftl::timer::start(false);
 
 	SECTION("a single data only frame") {
@@ -109,12 +111,14 @@ TEST_CASE( "Send and receiver via encoding" ) {
 		REQUIRE( result->frames[0].get<int>(Channel::Control) == 57 );
 	}
 
-	//ftl::timer::stop(true);
+	ftl::timer::stop(true);
 	ftl::timer::reset();
 	ftl::timer::setInterval(50);
 	ftl::pool.clear_queue();
 	while (ftl::pool.n_idle() != ftl::pool.size()) std::this_thread::sleep_for(std::chrono::milliseconds(10));
 
+	//ftl::pool.stop(true);
+
 	delete receiver;
 	delete sender;
 }
@@ -146,6 +150,8 @@ TEST_CASE( "Multi-thread stability testing" ) {
 	sender->setStream(&stream);
 	sender->resetSender();  // FIXME: Why is this needed?
 
+	//ftl::pool.restart(4);
+
 	ftl::timer::setInterval(20);
 	ftl::timer::start(false);
 
@@ -277,9 +283,12 @@ TEST_CASE( "Multi-thread stability testing" ) {
 
 	ftl::timer::reset();
 	ftl::timer::setInterval(50);
+	ftl::timer::stop(true);
 	ftl::pool.clear_queue();
 	while (ftl::pool.n_idle() != ftl::pool.size()) std::this_thread::sleep_for(std::chrono::milliseconds(10));
 
+	//ftl::pool.stop(true);
+
 	delete receiver;
 	delete sender;
 }
@@ -309,6 +318,8 @@ TEST_CASE( "Response via loopback" ) {
 		return true;
 	});
 
+	//ftl::pool.restart(4);
+
 	ftl::timer::start(false);
 
 	SECTION("a single data only frame") {
@@ -343,11 +354,13 @@ TEST_CASE( "Response via loopback" ) {
 		REQUIRE( result->frames[0].get<int>(Channel::Control) == 1 );
 	}
 
-	//ftl::timer::stop(true);
+	ftl::timer::stop(true);
 	ftl::timer::reset();
 	ftl::timer::setInterval(50);
-	ftl::pool.clear_queue();
-	while (ftl::pool.n_idle() != ftl::pool.size()) std::this_thread::sleep_for(std::chrono::milliseconds(10));
+	//ftl::pool.clear_queue();
+	//while (ftl::pool.n_idle() != ftl::pool.size()) std::this_thread::sleep_for(std::chrono::milliseconds(10));
+
+	//ftl::pool.stop(true);
 
 	delete receiver;
 }
-- 
GitLab