Changeset 25059 in vbox for trunk/include/iprt
- Timestamp:
- Nov 27, 2009 6:17:44 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/heap.h
r25055 r25059 261 261 * Reallocates / Allocates / Frees a heap block. 262 262 * 263 * @param hHeap The heap, mandatory. 263 * @param hHeap The heap handle. This is optional and will only be used 264 * for strict assertions. 264 265 * @param pv The heap block returned by RTHeapOffset. If NULL it 265 266 * behaves like RTHeapOffsetAlloc(). … … 275 276 * Reallocates / Allocates / Frees a heap block, zeroing any new bits. 276 277 * 277 * @param hHeap The heap, mandatory. 278 * @param hHeap The heap handle. This is optional and will only be used 279 * for strict assertions. 278 280 * @param pv The heap block returned by RTHeapOffset. If NULL it 279 281 * behaves like RTHeapOffsetAllocZ(). … … 289 291 * Frees memory allocated from a simple heap. 290 292 * 291 * @param hHeap The heap handle, mandatory. 293 * @param hHeap The heap handle. This is optional and will only be used 294 * for strict assertions. 292 295 * @param pv The heap block returned by RTHeapOffset 293 296 */ … … 301 304 * invalid \a pv can also cause traps or trigger assertions. 302 305 * 303 * @param hHeap The heap handle, mandatory. 306 * @param hHeap The heap handle. This is optional and will only be used 307 * for strict assertions. 304 308 * @param pv The heap block returned by RTHeapOffset 305 309 */
Note:
See TracChangeset
for help on using the changeset viewer.