Interim checking, Convolution Reverb

This commit is contained in:
Robin Davies
2023-04-05 03:00:51 -04:00
parent ed1dc75c53
commit b83ba7ca94
115 changed files with 7643 additions and 3055 deletions
+4 -1
View File
@@ -17,6 +17,7 @@
#include <set>
#include <strings.h>
#include "Ipv6Helpers.hpp"
#include "util.hpp"
#include "WebServer.hpp"
@@ -582,6 +583,7 @@ namespace pipedal
{
try
{
SetThreadName("webMain");
// The io_context is required for all I/O
boost::asio::io_service ioc{threads};
//*********************************
@@ -632,8 +634,9 @@ namespace pipedal
v.reserve(threads - 1);
for (auto i = threads - 1; i > 0; --i)
v.emplace_back(
[&ioc]
[&ioc,i]
{
SetThreadName(SS("web_" << i));
ioc.run();
});