InferiorCallPOSIX.h revision 314564
1//===-- InferiorCallPOSIX.h -------------------------------------*- C++ -*-===//
2//
3//                     The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef lldb_InferiorCallPOSIX_h_
11#define lldb_InferiorCallPOSIX_h_
12
13// Inferior execution of POSIX functions.
14
15#include "lldb/lldb-types.h"
16
17namespace lldb_private {
18
19class Process;
20
21enum MmapProt {
22  eMmapProtNone = 0,
23  eMmapProtExec = 1,
24  eMmapProtRead = 2,
25  eMmapProtWrite = 4
26};
27
28bool InferiorCallMmap(Process *proc, lldb::addr_t &allocated_addr,
29                      lldb::addr_t addr, lldb::addr_t length, unsigned prot,
30                      unsigned flags, lldb::addr_t fd, lldb::addr_t offset);
31
32bool InferiorCallMunmap(Process *proc, lldb::addr_t addr, lldb::addr_t length);
33
34bool InferiorCall(Process *proc, const Address *address,
35                  lldb::addr_t &returned_func, bool trap_exceptions = false);
36
37} // namespace lldb_private
38
39#endif // lldb_InferiorCallPOSIX_h_
40