1 | /* $Id: alloc-r0drv.h 5605 2007-11-01 16:09:26Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * innotek Portable Runtime - Memory Allocation, Ring-0 Driver.
|
---|
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 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 | #ifndef ___r0drv_alloc_r0drv_h
|
---|
19 | #define ___r0drv_alloc_r0drv_h
|
---|
20 |
|
---|
21 | #include <iprt/cdefs.h>
|
---|
22 | #include <iprt/types.h>
|
---|
23 | #include "internal/magics.h"
|
---|
24 |
|
---|
25 | __BEGIN_DECLS
|
---|
26 |
|
---|
27 | /**
|
---|
28 | * Header which heading all memory blocks.
|
---|
29 | */
|
---|
30 | typedef struct RTMEMHDR
|
---|
31 | {
|
---|
32 | /** Magic (RTMEMHDR_MAGIC). */
|
---|
33 | uint32_t u32Magic;
|
---|
34 | /** Block flags (RTMEMHDR_FLAG_*). */
|
---|
35 | uint32_t fFlags;
|
---|
36 | /** The size of the block. */
|
---|
37 | uint32_t cb;
|
---|
38 | /** Alignment padding. */
|
---|
39 | uint32_t u32Padding;
|
---|
40 | } RTMEMHDR, *PRTMEMHDR;
|
---|
41 |
|
---|
42 |
|
---|
43 | /** @name RTMEMHDR::fFlags.
|
---|
44 | * @{ */
|
---|
45 | #define RTMEMHDR_FLAG_ZEROED RT_BIT(0)
|
---|
46 | #define RTMEMHDR_FLAG_EXEC RT_BIT(1)
|
---|
47 | #ifdef RT_OS_LINUX
|
---|
48 | #define RTMEMHDR_FLAG_EXEC_HEAP RT_BIT(30)
|
---|
49 | #define RTMEMHDR_FLAG_KMALLOC RT_BIT(31)
|
---|
50 | #endif
|
---|
51 | /** @} */
|
---|
52 |
|
---|
53 |
|
---|
54 | PRTMEMHDR rtMemAlloc(size_t cb, uint32_t fFlags);
|
---|
55 | void rtMemFree(PRTMEMHDR pHdr);
|
---|
56 |
|
---|
57 | __END_DECLS
|
---|
58 | #endif
|
---|
59 |
|
---|