Merge branch 'batch_eliminate_heap' into integration

This commit is contained in:
J. Nick Koston 2025-07-18 22:20:08 -10:00
commit dec3c69190
No known key found for this signature in database

View File

@ -1727,6 +1727,8 @@ void APIConnection::process_batch_() {
uint16_t proto_payload_size = payload_size - header_padding - footer_size;
// Use placement new to construct PacketInfo in pre-allocated stack array
// This avoids default-constructing all MAX_PACKETS_PER_BATCH elements
// Explicit destruction is not needed because PacketInfo is trivially destructible,
// as ensured by the static_assert in its definition.
new (&packet_info[packet_count++]) PacketInfo(item.message_type, current_offset, proto_payload_size);
// Update tracking variables