Last change
on this file since 5881 was 5775, checked in by vboxsync, 17 years ago |
Corrected the copyright header.
|
-
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 5775 2007-11-16 15:47:20Z vboxsync $ *//* $Id: kHlpAlloc-iprt.cpp 5775 2007-11-16 15:47:20Z 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 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 | */
|
---|
18 |
|
---|
19 | /*******************************************************************************
|
---|
20 | * Header Files *
|
---|
21 | *******************************************************************************/
|
---|
22 | #include <k/kHlpAlloc.h>
|
---|
23 | #include <iprt/mem.h>
|
---|
24 | #include <iprt/string.h>
|
---|
25 |
|
---|
26 |
|
---|
27 | KHLP_DECL(void *) kHlpAlloc(KSIZE cb)
|
---|
28 | {
|
---|
29 | return RTMemAlloc(cb);
|
---|
30 | }
|
---|
31 |
|
---|
32 |
|
---|
33 | KHLP_DECL(void *) kHlpAllocZ(KSIZE cb)
|
---|
34 | {
|
---|
35 | return RTMemAllocZ(cb);
|
---|
36 | }
|
---|
37 |
|
---|
38 |
|
---|
39 | KHLP_DECL(void *) kHlpDup(const void *pv, KSIZE cb)
|
---|
40 | {
|
---|
41 | return RTMemDup(pv, cb);
|
---|
42 | }
|
---|
43 |
|
---|
44 |
|
---|
45 | KHLP_DECL(char *) kHlpStrDup(const char *psz)
|
---|
46 | {
|
---|
47 | return RTStrDup(psz);
|
---|
48 | }
|
---|
49 |
|
---|
50 |
|
---|
51 | KHLP_DECL(void *) kHlpRealloc(void *pv, KSIZE cb)
|
---|
52 | {
|
---|
53 | return RTMemRealloc(pv, cb);
|
---|
54 | }
|
---|
55 |
|
---|
56 |
|
---|
57 | KHLP_DECL(void) kHlpFree(void *pv)
|
---|
58 | {
|
---|
59 | RTMemFree(pv);
|
---|
60 | }
|
---|
61 |
|
---|
62 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.