blob: 4f7819051f9c8c90e8ef76d95b0f3b4a6f3f8b50 [file] [log] [blame]
njn747f8b02009-01-21 04:11:13 +00001/*--------------------------------------------------------------------*/
2/*--- User-mode execve(). priv_ume.h ---*/
3/*--------------------------------------------------------------------*/
4
5/*
6 This file is part of Valgrind, a dynamic binary instrumentation
7 framework.
8
sewardj0f157dd2013-10-18 14:27:36 +00009 Copyright (C) 2000-2013 Julian Seward
njn747f8b02009-01-21 04:11:13 +000010 jseward@acm.org
11
12 This program is free software; you can redistribute it and/or
13 modify it under the terms of the GNU General Public License as
14 published by the Free Software Foundation; either version 2 of the
15 License, or (at your option) any later version.
16
17 This program is distributed in the hope that it will be useful, but
18 WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 General Public License for more details.
21
22 You should have received a copy of the GNU General Public License
23 along with this program; if not, write to the Free Software
24 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
25 02111-1307, USA.
26
27 The GNU General Public License is contained in the file COPYING.
28*/
29
njn8b68b642009-06-24 00:37:09 +000030#if defined(VGO_linux) || defined(VGO_darwin)
31
njn747f8b02009-01-21 04:11:13 +000032#ifndef __PRIV_UME_H
33#define __PRIV_UME_H
34
florian535fb1b2013-09-15 13:54:34 +000035#include "pub_core_ume.h" // ExeInfo
36
florianff4a0842015-04-08 19:01:15 +000037extern Int VG_(do_exec_inner)(const HChar *exe, ExeInfo *info);
njn747f8b02009-01-21 04:11:13 +000038
njn8b68b642009-06-24 00:37:09 +000039#if defined(VGO_linux)
florianff4a0842015-04-08 19:01:15 +000040extern Bool VG_(match_ELF) ( const void *hdr, SizeT len );
njn747f8b02009-01-21 04:11:13 +000041extern Int VG_(load_ELF) ( Int fd, const HChar *name, ExeInfo *info );
njn8b68b642009-06-24 00:37:09 +000042#elif defined(VGO_darwin)
florianff4a0842015-04-08 19:01:15 +000043extern Bool VG_(match_macho) ( const void *hdr, SizeT len );
njnf76d27a2009-05-28 01:53:07 +000044extern Int VG_(load_macho) ( Int fd, const HChar *name, ExeInfo *info );
njn8b68b642009-06-24 00:37:09 +000045#else
46# error Unknown OS
njnf76d27a2009-05-28 01:53:07 +000047#endif
48
florianff4a0842015-04-08 19:01:15 +000049extern Bool VG_(match_script) ( const void *hdr, SizeT len );
njn8b68b642009-06-24 00:37:09 +000050extern Int VG_(load_script) ( Int fd, const HChar *name, ExeInfo *info );
51
52
53#endif // __PRIV_UME_H
54
55#endif // defined(VGO_linux) || defined(VGO_darwin)
njn747f8b02009-01-21 04:11:13 +000056
57/*--------------------------------------------------------------------*/
58/*--- end ---*/
59/*--------------------------------------------------------------------*/
60