VirtualBox

source: vbox/trunk/src/VBox/Runtime/common/alloc/alloc.cpp@ 5999

Last change on this file since 5999 was 5999, checked in by vboxsync, 17 years ago

The Giant CDDL Dual-License Header Change.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 2.4 KB
Line 
1/* $Id: alloc.cpp 5999 2007-12-07 15:05:06Z vboxsync $ */
2/** @file
3 * innotek Portable Runtime - Memory Allocation.
4 */
5
6/*
7 * Copyright (C) 2006-2007 innotek GmbH
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27
28/*******************************************************************************
29* Header Files *
30*******************************************************************************/
31#include <iprt/alloc.h>
32#include <iprt/assert.h>
33#include <iprt/string.h>
34
35
36/**
37 * Duplicates a chunk of memory into a new heap block.
38 *
39 * @returns New heap block with the duplicate data.
40 * @returns NULL if we're out of memory.
41 * @param pvSrc The memory to duplicate.
42 * @param cb The amount of memory to duplicate.
43 */
44RTDECL(void *) RTMemDup(const void *pvSrc, size_t cb)
45{
46 void *pvDst = RTMemAlloc(cb);
47 if (pvDst)
48 memcpy(pvDst, pvSrc, cb);
49 return pvDst;
50}
51
52
53/**
54 * Duplicates a chunk of memory into a new heap block with some
55 * additional zeroed memory.
56 *
57 * @returns New heap block with the duplicate data.
58 * @returns NULL if we're out of memory.
59 * @param pvSrc The memory to duplicate.
60 * @param cbSrc The amount of memory to duplicate.
61 * @param cbExtra The amount of extra memory to allocate and zero.
62 */
63RTDECL(void *) RTMemDupEx(const void *pvSrc, size_t cbSrc, size_t cbExtra)
64{
65 void *pvDst = RTMemAlloc(cbSrc + cbExtra);
66 if (pvDst)
67 {
68 memcpy(pvDst, pvSrc, cbSrc);
69 memset((uint8_t *)pvDst + cbSrc, 0, cbExtra);
70 }
71 return pvDst;
72}
73
74
Note: See TracBrowser for help on using the repository browser.

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