| 154 | } |
| 155 | |
| 156 | txSize fxAdjustChunkSize(txMachine* the, txSize size) |
| 157 | { |
| 158 | txSize adjust = sizeof(txChunk); |
| 159 | txSize modulo = size & (sizeof(size_t) - 1); |
| 160 | if (modulo) |
| 161 | adjust += sizeof(size_t) - modulo; |
| 162 | return fxAddChunkSizes(the, size, adjust); |
| 163 | } |
| 164 | |
| 165 | void fxAllocate(txMachine* the, txCreation* theCreation) |
| 166 | { |
no outgoing calls
no test coverage detected