Return a temporary buffer we can use to return data.
| 139 | |
| 140 | /// Return a temporary buffer we can use to return data. |
| 141 | char* getReturnBuffer(U32 size) |
| 142 | { |
| 143 | AssertFatal(Con::isMainThread(), "Manipulating return buffer from a secondary thread!"); |
| 144 | validateArgBufferSize(size); |
| 145 | return mArgBuffer; |
| 146 | } |
| 147 | |
| 148 | /// Return a buffer we can use for arguments. |
| 149 | /// |
no test coverage detected