VirtualBox

source: vbox/trunk/src/libs/kStuff/iprt/kHlpAlloc-iprt.cpp@ 35288

Last change on this file since 35288 was 35288, checked in by vboxsync, 14 years ago

typo

  • 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 35288 2010-12-22 09:14:54Z vboxsync $ */
2/** @file
3 * kHlpAlloc - Memory Allocation, IPRT based implementation.
4 */
5
6/*
7 * Copyright (C) 2007 Oracle Corporation
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
26KHLP_DECL(void *) kHlpAlloc(KSIZE cb)
27{
28 return RTMemAlloc(cb);
29}
30
31
32KHLP_DECL(void *) kHlpAllocZ(KSIZE cb)
33{
34 return RTMemAllocZ(cb);
35}
36
37
38KHLP_DECL(void *) kHlpDup(const void *pv, KSIZE cb)
39{
40 return RTMemDup(pv, cb);
41}
42
43
44KHLP_DECL(char *) kHlpStrDup(const char *psz)
45{
46 return RTStrDup(psz);
47}
48
49
50KHLP_DECL(void *) kHlpRealloc(void *pv, KSIZE cb)
51{
52 return RTMemRealloc(pv, cb);
53}
54
55
56KHLP_DECL(void) kHlpFree(void *pv)
57{
58 RTMemFree(pv);
59}
60
61
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