Changeset 28271 in vbox for trunk/include
- Timestamp:
- Apr 13, 2010 7:29:42 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 60013
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/mem.h
r27011 r28271 112 112 */ 113 113 RTDECL(void *) RTMemAllocZ(size_t cb) RT_NO_THROW; 114 115 /** 116 * Wrapper around RTMemAlloc for automatically aligning variable sized 117 * allocations so that the various electric fence heaps works correctly. 118 * 119 * @returns See RTMemAlloc. 120 * @param cbUnaligned The unaligned size. 121 */ 122 RTDECL(void *) RTMemAllocVar(size_t cbUnaligned); 123 124 /** 125 * Wrapper around RTMemAllocZ for automatically aligning variable sized 126 * allocations so that the various electric fence heaps works correctly. 127 * 128 * @returns See RTMemAllocZ. 129 * @param cbUnaligned The unaligned size. 130 */ 131 RTDECL(void *) RTMemAllocZVar(size_t cbUnaligned); 114 132 115 133 /** … … 376 394 377 395 /** 396 * Same as RTMemAllocVar() except that it's fenced. 397 * 398 * @returns Pointer to the allocated memory. Free with RTMemEfFree(). 399 * @returns NULL on failure. 400 * @param cbUnaligned Size in bytes of the memory block to allocate. 401 */ 402 RTDECL(void *) RTMemEfAllocVar(size_t cbUnaligned) RT_NO_THROW; 403 404 /** 405 * Same as RTMemAllocZVar() except that it's fenced. 406 * 407 * @returns Pointer to the allocated memory. 408 * @returns NULL on failure. 409 * @param cbUnaligned Size in bytes of the memory block to allocate. 410 */ 411 RTDECL(void *) RTMemEfAllocZVar(size_t cbUnaligned) RT_NO_THROW; 412 413 /** 378 414 * Same as RTMemRealloc() except that it's fenced. 379 415 * … … 422 458 # define RTMemAlloc RTMemEfAlloc 423 459 # define RTMemAllocZ RTMemEfAllocZ 460 # define RTMemAllocVar RTMemEfAllocVar 461 # define RTMemAllocZVar RTMemEfAllocZVar 424 462 # define RTMemRealloc RTMemEfRealloc 425 463 # define RTMemFree RTMemEfFree
Note:
See TracChangeset
for help on using the changeset viewer.