Comment out vestigial test code (improves mt performance)

This commit is contained in:
Joseph Henry 2024-09-06 09:52:39 -07:00
parent c86b91c5f0
commit 059d05f41f
No known key found for this signature in database
GPG key ID: C45B33FF5EBC9344
2 changed files with 11 additions and 7 deletions

View file

@ -62,7 +62,7 @@ void PacketMultiplexer::putFrame(void* tPtr, uint64_t nwid, void** nuptr, const
memcpy(packet->data, data, len);
int bucket = flowId % _concurrency;
_rxPacketQueues[bucket]->postLimit(packet, 256);
_rxPacketQueues[bucket]->postLimit(packet, 2048);
}
void PacketMultiplexer::setUpPostDecodeReceiveThreads(unsigned int concurrency, bool cpuPinningEnabled)