blob: 9c1615e4b8209c6b0af7d7ad69ff665311279e28 [file] [log] [blame]
sewardj4cfea4f2006-10-14 19:26:10 +00001
2/*--------------------------------------------------------------------*/
3/*--- Top level for kernel interface declarations. ---*/
4/*--- pub_tool_vki.h ---*/
5/*--------------------------------------------------------------------*/
6
7/*
8 This file is part of Valgrind, a dynamic binary instrumentation
9 framework.
10
Elliott Hughesed398002017-06-21 14:41:24 -070011 Copyright (C) 2000-2017 Julian Seward
sewardj4cfea4f2006-10-14 19:26:10 +000012 jseward@acm.org
Elliott Hughesed398002017-06-21 14:41:24 -070013 Copyright (C) 2005-2017 Nicholas Nethercote
sewardj4cfea4f2006-10-14 19:26:10 +000014 njn@valgrind.org
Elliott Hughesed398002017-06-21 14:41:24 -070015 Copyright (C) 2006-2017 OpenWorks LLP
sewardj4cfea4f2006-10-14 19:26:10 +000016 info@open-works.co.uk
17
18 This program is free software; you can redistribute it and/or
19 modify it under the terms of the GNU General Public License as
20 published by the Free Software Foundation; either version 2 of the
21 License, or (at your option) any later version.
22
23 This program is distributed in the hope that it will be useful, but
24 WITHOUT ANY WARRANTY; without even the implied warranty of
25 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
26 General Public License for more details.
27
28 You should have received a copy of the GNU General Public License
29 along with this program; if not, write to the Free Software
30 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
31 02111-1307, USA.
32
33 The GNU General Public License is contained in the file COPYING.
34*/
35
36/* This file defines types and constants for the kernel interface, and to
37 make that clear everything is prefixed VKI_/vki_.
38
39 This file is merely a top-level "steering" file, which pulls in the
40 correct bits for the relevant platform. You should not directly
41 #include any file in include/vki; instead #include only this one or
42 pub_core_vki.h.
43*/
44
45#ifndef __PUB_TOOL_VKI_H
46#define __PUB_TOOL_VKI_H
47
48#if defined(VGO_linux)
49# include "vki/vki-linux.h"
sewardj25b18082013-08-08 08:09:29 +000050# include "vki/vki-linux-drm.h"
njnf76d27a2009-05-28 01:53:07 +000051#elif defined(VGO_darwin)
52# include "vki/vki-darwin.h"
sewardj8eb8bab2015-07-21 14:44:28 +000053#elif defined(VGO_solaris)
54# include "vki/vki-solaris.h"
sewardj4cfea4f2006-10-14 19:26:10 +000055#else
56# error Unknown Plat/OS
57#endif
58
bart51e61da2012-10-23 18:03:28 +000059#if defined(VGP_amd64_linux) || defined(VGP_x86_linux)
60# include "vki/vki-xen.h"
61#endif
62
63
sewardj4cfea4f2006-10-14 19:26:10 +000064#endif // __PUB_TOOL_VKI_H
65
66/*--------------------------------------------------------------------*/
67/*--- end pub_tool_vki.h ---*/
68/*--------------------------------------------------------------------*/