blob: ba2bed71ae5a3ea1bb28b9a39c9b84eb5dd4f451 [file] [log] [blame]
njne9befc62005-06-11 15:51:30 +00001
2/*--------------------------------------------------------------------*/
3/*--- Memory management libc stuff. pub_core_libcmman.h ---*/
4/*--------------------------------------------------------------------*/
5
6/*
7 This file is part of Valgrind, a dynamic binary instrumentation
8 framework.
9
10 Copyright (C) 2000-2005 Julian Seward
11 jseward@acm.org
12
13 This program is free software; you can redistribute it and/or
14 modify it under the terms of the GNU General Public License as
15 published by the Free Software Foundation; either version 2 of the
16 License, or (at your option) any later version.
17
18 This program is distributed in the hope that it will be useful, but
19 WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 General Public License for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
26 02111-1307, USA.
27
28 The GNU General Public License is contained in the file COPYING.
29*/
30
31#ifndef __PUB_CORE_LIBCMMAN_H
32#define __PUB_CORE_LIBCMMAN_H
33
34//--------------------------------------------------------------------
35// PURPOSE: This module contains libc code related to low-level
36// memory management, ie. mmap and friends.
37//--------------------------------------------------------------------
38
39#include "pub_tool_libcmman.h"
40
41extern void* VG_(mmap) ( void* start, SizeT length, UInt prot, UInt flags,
42 UInt sf_flags, UInt fd, OffT offset );
43extern Int VG_(munmap) ( void* start, SizeT length );
44extern Int VG_(mprotect) ( void *start, SizeT length, UInt prot );
45
njn0ae787c2005-06-28 22:14:53 +000046extern Addr VG_(get_memory_from_mmap_for_client)(SizeT len);
njn9260c782005-06-19 21:57:54 +000047
njne9befc62005-06-11 15:51:30 +000048#endif // __PUB_CORE_LIBCMMAN_H
49
50/*--------------------------------------------------------------------*/
51/*--- end ---*/
52/*--------------------------------------------------------------------*/