VirtualBox

Ignore:
Timestamp:
Jul 28, 2010 3:24:30 AM (15 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
64136
Message:

iprt,++: Tag allocation in all builds with a string, defaulting to FILE.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/r3/freebsd/alloc-freebsd.cpp

    r28800 r31158  
    11/* $Id$ */
    22/** @file
    3  * IPRT - Memory Allocation, POSIX.
     3 * IPRT - Memory Allocation, FreeBSD.
    44 */
    55
    66/*
    7  * Copyright (C) 2006-2007 Oracle Corporation
     7 * Copyright (C) 2006-2010 Oracle Corporation
    88 *
    99 * This file is part of VirtualBox Open Source Edition (OSE), as
     
    4040
    4141
    42 /**
    43  * Allocates memory which may contain code.
    44  *
    45  * @returns Pointer to the allocated memory.
    46  * @returns NULL on failure.
    47  * @param   cb      Size in bytes of the memory block to allocate.
    48  */
    49 RTDECL(void *) RTMemExecAlloc(size_t cb) RT_NO_THROW
     42RTDECL(void *) RTMemExecAllocTag(size_t cb, const char *pszTag) RT_NO_THROW
    5043{
    5144    /*
     
    7366
    7467
    75 /**
    76  * Free executable/read/write memory allocated by RTMemExecAlloc().
    77  *
    78  * @param   pv      Pointer to memory block.
    79  */
    8068RTDECL(void)    RTMemExecFree(void *pv) RT_NO_THROW
    8169{
     
    8573
    8674
    87 /**
    88  * Allocate page aligned memory.
    89  *
    90  * @returns Pointer to the allocated memory.
    91  * @returns NULL if we're out of memory.
    92  * @param   cb  Size of the memory block. Will be rounded up to page size.
    93  */
    94 RTDECL(void *) RTMemPageAlloc(size_t cb) RT_NO_THROW
     75RTDECL(void *) RTMemPageAllocTag(size_t cb, const char *pszTag) RT_NO_THROW
    9576{
    9677    cb = RT_ALIGN_Z(cb, PAGE_SIZE);
     
    10384
    10485
    105 /**
    106  * Allocate zero'ed page aligned memory.
    107  *
    108  * @returns Pointer to the allocated memory.
    109  * @returns NULL if we're out of memory.
    110  * @param   cb  Size of the memory block. Will be rounded up to page size.
    111  */
    112 RTDECL(void *) RTMemPageAllocZ(size_t cb) RT_NO_THROW
     86RTDECL(void *) RTMemPageAllocZTag(size_t cb, const char *pszTag) RT_NO_THROW
    11387{
    11488    cb = RT_ALIGN_Z(cb, PAGE_SIZE);
     
    12094
    12195
    122 /**
    123  * Free a memory block allocated with RTMemPageAlloc() or RTMemPageAllocZ().
    124  *
    125  * @param   pv      Pointer to the block as it was returned by the allocation function.
    126  *                  NULL will be ignored.
    127  */
    12896RTDECL(void) RTMemPageFree(void *pv, size_t cb) RT_NO_THROW
    12997{
     
    133101
    134102
    135 /**
    136  * Change the page level protection of a memory region.
    137  *
    138  * @returns iprt status code.
    139  * @param   pv          Start of the region. Will be rounded down to nearest page boundary.
    140  * @param   cb          Size of the region. Will be rounded up to the nearest page boundary.
    141  * @param   fProtect    The new protection, a combination of the RTMEM_PROT_* defines.
    142  */
    143103RTDECL(int) RTMemProtect(void *pv, size_t cb, unsigned fProtect) RT_NO_THROW
    144104{
     
    196156    return RTErrConvertFromErrno(errno);
    197157}
     158
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