You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently it allocates memory to hold the headers and implicitly to manage a vector of item pointers. Having the writer class provide the storage for the headers (feasible, since the packet size is bounded) and recycling a vector for item pointers would eliminate the malloc/free overheads.
The text was updated successfully, but these errors were encountered:
Currently it allocates memory to hold the headers and implicitly to manage a vector of item pointers. Having the writer class provide the storage for the headers (feasible, since the packet size is bounded) and recycling a vector for item pointers would eliminate the malloc/free overheads.
The text was updated successfully, but these errors were encountered: