]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/l4sys/include/ARCH-x86/vm.h
03f13323f28ad83286b408136f1ccb328da648de
[l4.git] / l4 / pkg / l4sys / include / ARCH-x86 / vm.h
1 /**
2  * \internal
3  * \file
4  * \brief X86 virtualization interface.
5  */
6 /*
7  * (c) 2008-2009 Technische Universität Dresden
8  * This file is part of TUD:OS and distributed under the terms of the
9  * GNU General Public License 2.
10  * Please see the COPYING-GPL-2 file for details.
11  *
12  * As a special exception, you may use this file as part of a free software
13  * library without restriction.  Specifically, if other files instantiate
14  * templates or use macros or inline functions from this file, or you compile
15  * this file and link it with other files to produce an executable, this
16  * file does not by itself cause the resulting executable to be covered by
17  * the GNU General Public License.  This exception does not however
18  * invalidate any other reasons why the executable file might be covered by
19  * the GNU General Public License.
20  */
21 #ifndef __INCLUDE__ARCH_X86__VM_H__
22 #define __INCLUDE__ARCH_X86__VM_H__
23
24 #include <l4/sys/types.h>
25
26 /**
27  * \brief General purpose regisers for SVM, x86-32
28  * \ingroup l4_vm_svm_api
29  */
30 struct l4_vm_svm_gpregs
31 {
32   l4_umword_t edx;
33   l4_umword_t ecx;
34   l4_umword_t ebx;
35   l4_umword_t ebp;
36   l4_umword_t esi;
37   l4_umword_t edi;
38   l4_umword_t dr0;
39   l4_umword_t dr1;
40   l4_umword_t dr2;
41   l4_umword_t dr3;
42 };
43
44 #include <l4/sys/__vm-svm.h>
45
46 #endif /* ! __INCLUDE__ARCH_X86__VM_H__ */