VirtualBox

Changeset 28271 in vbox for trunk/include


Ignore:
Timestamp:
Apr 13, 2010 7:29:42 PM (15 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
60013
Message:

IPRT: Some efence adjustments, adding RTMemAllocVar and RTMemAllocZVar for dealing with struct + string style allocations.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/iprt/mem.h

    r27011 r28271  
    112112 */
    113113RTDECL(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 */
     122RTDECL(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 */
     131RTDECL(void *) RTMemAllocZVar(size_t cbUnaligned);
    114132
    115133/**
     
    376394
    377395/**
     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 */
     402RTDECL(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 */
     411RTDECL(void *)  RTMemEfAllocZVar(size_t cbUnaligned) RT_NO_THROW;
     412
     413/**
    378414 * Same as RTMemRealloc() except that it's fenced.
    379415 *
     
    422458# define RTMemAlloc     RTMemEfAlloc
    423459# define RTMemAllocZ    RTMemEfAllocZ
     460# define RTMemAllocVar  RTMemEfAllocVar
     461# define RTMemAllocZVar RTMemEfAllocZVar
    424462# define RTMemRealloc   RTMemEfRealloc
    425463# define RTMemFree      RTMemEfFree
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette