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 Revision
|
File size:
1.4 KB
|
Line | |
---|
1 | /* $Id: kHlpAlloc-iprt.cpp 5999 2007-12-07 15:05:06Z vboxsync $ *//* $Id: kHlpAlloc-iprt.cpp 5999 2007-12-07 15:05:06Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * kHlpAlloc - Memory Allocation, IPRT based implementation.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 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 |
|
---|
18 | /*******************************************************************************
|
---|
19 | * Header Files *
|
---|
20 | *******************************************************************************/
|
---|
21 | #include <k/kHlpAlloc.h>
|
---|
22 | #include <iprt/mem.h>
|
---|
23 | #include <iprt/string.h>
|
---|
24 |
|
---|
25 |
|
---|
26 | KHLP_DECL(void *) kHlpAlloc(KSIZE cb)
|
---|
27 | {
|
---|
28 | return RTMemAlloc(cb);
|
---|
29 | }
|
---|
30 |
|
---|
31 |
|
---|
32 | KHLP_DECL(void *) kHlpAllocZ(KSIZE cb)
|
---|
33 | {
|
---|
34 | return RTMemAllocZ(cb);
|
---|
35 | }
|
---|
36 |
|
---|
37 |
|
---|
38 | KHLP_DECL(void *) kHlpDup(const void *pv, KSIZE cb)
|
---|
39 | {
|
---|
40 | return RTMemDup(pv, cb);
|
---|
41 | }
|
---|
42 |
|
---|
43 |
|
---|
44 | KHLP_DECL(char *) kHlpStrDup(const char *psz)
|
---|
45 | {
|
---|
46 | return RTStrDup(psz);
|
---|
47 | }
|
---|
48 |
|
---|
49 |
|
---|
50 | KHLP_DECL(void *) kHlpRealloc(void *pv, KSIZE cb)
|
---|
51 | {
|
---|
52 | return RTMemRealloc(pv, cb);
|
---|
53 | }
|
---|
54 |
|
---|
55 |
|
---|
56 | KHLP_DECL(void) kHlpFree(void *pv)
|
---|
57 | {
|
---|
58 | RTMemFree(pv);
|
---|
59 | }
|
---|
60 |
|
---|
61 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.