1 | /* $Id: alloc.cpp 1 1970-01-01 00:00:00Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * InnoTek Portable Runtime - Memory Allocation.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006 InnoTek Systemberatung 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 as published by the Free Software Foundation,
|
---|
13 | * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
14 | * distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
15 | * be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * If you received this file as part of a commercial VirtualBox
|
---|
18 | * distribution, then only the terms of your commercial VirtualBox
|
---|
19 | * license agreement apply instead of the previous paragraph.
|
---|
20 | */
|
---|
21 |
|
---|
22 |
|
---|
23 | /*******************************************************************************
|
---|
24 | * Header Files *
|
---|
25 | *******************************************************************************/
|
---|
26 | #include <iprt/alloc.h>
|
---|
27 | #include <iprt/assert.h>
|
---|
28 | #include <iprt/string.h>
|
---|
29 |
|
---|
30 |
|
---|
31 | /**
|
---|
32 | * Duplicates a chunk of memory into a new heap block.
|
---|
33 | *
|
---|
34 | * @returns New heap block with the duplicate data.
|
---|
35 | * @returns NULL if we're out of memory.
|
---|
36 | * @param pvSrc The memory to duplicate.
|
---|
37 | * @param cb The amount of memory to duplicate.
|
---|
38 | */
|
---|
39 | RTDECL(void *) RTMemDup(const void *pvSrc, size_t cb)
|
---|
40 | {
|
---|
41 | void *pvDst = RTMemAlloc(cb);
|
---|
42 | if (pvDst)
|
---|
43 | memcpy(pvDst, pvSrc, cb);
|
---|
44 | return pvDst;
|
---|
45 | }
|
---|
46 |
|
---|
47 |
|
---|
48 | /**
|
---|
49 | * Duplicates a chunk of memory into a new heap block with some
|
---|
50 | * additional zeroed memory.
|
---|
51 | *
|
---|
52 | * @returns New heap block with the duplicate data.
|
---|
53 | * @returns NULL if we're out of memory.
|
---|
54 | * @param pvSrc The memory to duplicate.
|
---|
55 | * @param cbSrc The amount of memory to duplicate.
|
---|
56 | * @param cbExtra The amount of extra memory to allocate and zero.
|
---|
57 | */
|
---|
58 | RTDECL(void *) RTMemDupEx(const void *pvSrc, size_t cbSrc, size_t cbExtra)
|
---|
59 | {
|
---|
60 | void *pvDst = RTMemAlloc(cbSrc + cbExtra);
|
---|
61 | if (pvDst)
|
---|
62 | {
|
---|
63 | memcpy(pvDst, pvSrc, cbSrc);
|
---|
64 | memset((uint8_t *)pvDst + cbSrc, 0, cbExtra);
|
---|
65 | }
|
---|
66 | return pvDst;
|
---|
67 | }
|
---|
68 |
|
---|
69 |
|
---|