1 | /* $Id: DBGPlugInLinuxModuleVerTmpl.cpp.h 98103 2023-01-17 14:15:46Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * DBGPlugInLinux - Instantiate LNX_TEMPLATE_HEADER for all different struct module versions.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2019-2023 Oracle and/or its affiliates.
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox base platform packages, as
|
---|
10 | * available from https://www.virtualbox.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
|
---|
14 | * as published by the Free Software Foundation, in version 3 of the
|
---|
15 | * License.
|
---|
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, see <https://www.gnu.org/licenses>.
|
---|
24 | *
|
---|
25 | * SPDX-License-Identifier: GPL-3.0-only
|
---|
26 | */
|
---|
27 |
|
---|
28 | /*
|
---|
29 | * Newest first so the list walker can select the right instance.
|
---|
30 | */
|
---|
31 |
|
---|
32 | #define LNX_VER LNX_MK_VER(4,5,0)
|
---|
33 | #define LNX_SUFFIX RT_CONCAT(_4_5_0,LNX_BIT_SUFFIX)
|
---|
34 | #include LNX_TEMPLATE_HEADER
|
---|
35 |
|
---|
36 | #define LNX_VER LNX_MK_VER(2,6,27)
|
---|
37 | #define LNX_SUFFIX RT_CONCAT(_2_6_27,LNX_BIT_SUFFIX)
|
---|
38 | #include LNX_TEMPLATE_HEADER
|
---|
39 |
|
---|
40 | #define LNX_VER LNX_MK_VER(2,6,25)
|
---|
41 | #define LNX_SUFFIX RT_CONCAT(_2_6_25,LNX_BIT_SUFFIX)
|
---|
42 | #include LNX_TEMPLATE_HEADER
|
---|
43 |
|
---|
44 | #define LNX_VER LNX_MK_VER(2,6,24)
|
---|
45 | #define LNX_SUFFIX RT_CONCAT(_2_6_24,LNX_BIT_SUFFIX)
|
---|
46 | #include LNX_TEMPLATE_HEADER
|
---|
47 |
|
---|
48 | #define LNX_VER LNX_MK_VER(2,6,21)
|
---|
49 | #define LNX_SUFFIX RT_CONCAT(_2_6_21,LNX_BIT_SUFFIX)
|
---|
50 | #include LNX_TEMPLATE_HEADER
|
---|
51 |
|
---|
52 | #define LNX_VER LNX_MK_VER(2,6,20)
|
---|
53 | #define LNX_SUFFIX RT_CONCAT(_2_6_20,LNX_BIT_SUFFIX)
|
---|
54 | #include LNX_TEMPLATE_HEADER
|
---|
55 |
|
---|
56 | #define LNX_VER LNX_MK_VER(2,6,18)
|
---|
57 | #define LNX_SUFFIX RT_CONCAT(_2_6_18,LNX_BIT_SUFFIX)
|
---|
58 | #include LNX_TEMPLATE_HEADER
|
---|
59 |
|
---|
60 | #define LNX_VER LNX_MK_VER(2,6,17)
|
---|
61 | #define LNX_SUFFIX RT_CONCAT(_2_6_17,LNX_BIT_SUFFIX)
|
---|
62 | #include LNX_TEMPLATE_HEADER
|
---|
63 |
|
---|
64 | #define LNX_VER LNX_MK_VER(2,6,13)
|
---|
65 | #define LNX_SUFFIX RT_CONCAT(_2_6_13,LNX_BIT_SUFFIX)
|
---|
66 | #include LNX_TEMPLATE_HEADER
|
---|
67 |
|
---|
68 | #define LNX_VER LNX_MK_VER(2,6,11)
|
---|
69 | #define LNX_SUFFIX RT_CONCAT(_2_6_11,LNX_BIT_SUFFIX)
|
---|
70 | #include LNX_TEMPLATE_HEADER
|
---|
71 |
|
---|
72 | #define LNX_VER LNX_MK_VER(2,6,7)
|
---|
73 | #define LNX_SUFFIX RT_CONCAT(_2_6_7,LNX_BIT_SUFFIX)
|
---|
74 | #include LNX_TEMPLATE_HEADER
|
---|
75 |
|
---|
76 | #define LNX_VER LNX_MK_VER(2,5,67) /* Makes away with kernel_symbol_group and exception_table. */
|
---|
77 | #define LNX_SUFFIX RT_CONCAT(_2_5_67,LNX_BIT_SUFFIX)
|
---|
78 | #include LNX_TEMPLATE_HEADER
|
---|
79 |
|
---|
80 | #define LNX_VER LNX_MK_VER(2,5,55) /* Adds gpl_symbols */
|
---|
81 | #define LNX_SUFFIX RT_CONCAT(_2_5_55,LNX_BIT_SUFFIX)
|
---|
82 | #include LNX_TEMPLATE_HEADER
|
---|
83 |
|
---|
84 | #define LNX_VER LNX_MK_VER(2,5,48)
|
---|
85 | #define LNX_SUFFIX RT_CONCAT(_2_5_48,LNX_BIT_SUFFIX)
|
---|
86 | #include LNX_TEMPLATE_HEADER
|
---|
87 |
|
---|
88 |
|
---|
89 | /*
|
---|
90 | * Cleanup.
|
---|
91 | */
|
---|
92 | #undef LNX_PTR_T
|
---|
93 | #undef LNX_64BIT
|
---|
94 | #undef LNX_BIT_SUFFIX
|
---|
95 |
|
---|