VirtualBox

source: vbox/trunk/src/VBox/Runtime/r0drv/alloc-r0drv.h@ 5605

Last change on this file since 5605 was 5605, checked in by vboxsync, 17 years ago

BIT => RT_BIT, BIT64 => RT_BIT_64. BIT() is defined in Linux 2.6.24

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 1.4 KB
Line 
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 */
30typedef 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
54PRTMEMHDR rtMemAlloc(size_t cb, uint32_t fFlags);
55void rtMemFree(PRTMEMHDR pHdr);
56
57__END_DECLS
58#endif
59
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