VirtualBox

source: vbox/trunk/src/VBox/Additions/common/VBoxGuest/linux/combined-agnostic.c

Last change on this file was 100307, checked in by vboxsync, 11 months ago

Runtime,Additions,HostDrivers: Provide API to query the host page size and associated parameters for architectures where the used page size can vary (like on linux.arm64 depending on the kernel config), bugref:10476

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.8 KB
Line 
1/* $Id: combined-agnostic.c 100307 2023-06-28 10:17:34Z vboxsync $ */
2/** @file
3 * VBoxGuest - Combine a bunch of OS agnostic sources into one compile unit.
4 */
5
6/*
7 * Copyright (C) 2006-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 * The contents of this file may alternatively be used under the terms
26 * of the Common Development and Distribution License Version 1.0
27 * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
28 * in the VirtualBox distribution, in which case the provisions of the
29 * CDDL are applicable instead of those of the GPL.
30 *
31 * You may elect to license modified versions of this file under the
32 * terms and conditions of either the GPL or the CDDL or both.
33 *
34 * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
35 */
36
37#define LOG_GROUP LOG_GROUP_DEFAULT
38#include "internal/iprt.h"
39#include <VBox/log.h>
40
41//#undef LOG_GROUP
42#include "VBoxGuestR0LibGenericRequest.c"
43#undef LOG_GROUP
44#include "VBoxGuestR0LibHGCMInternal.c"
45//#undef LOG_GROUP
46#include "VBoxGuestR0LibInit.c"
47//#undef LOG_GROUP
48#include "VBoxGuestR0LibPhysHeap.c"
49#undef LOG_GROUP
50#include "VBoxGuestR0LibVMMDev.c"
51#undef LOG_GROUP
52#include "r0drv/alloc-r0drv.c"
53#undef LOG_GROUP
54#include "r0drv/initterm-r0drv.c"
55#undef LOG_GROUP
56#include "r0drv/memobj-r0drv.c"
57#undef LOG_GROUP
58#include "r0drv/mpnotification-r0drv.c"
59#undef LOG_GROUP
60#include "r0drv/powernotification-r0drv.c"
61#undef LOG_GROUP
62#include "r0drv/generic/semspinmutex-r0drv-generic.c"
63#undef LOG_GROUP
64#include "common/alloc/alloc.c"
65#undef LOG_GROUP
66#include "common/checksum/crc32.c"
67#undef LOG_GROUP
68#include "common/err/errinfo.c"
69#undef LOG_GROUP
70#include "common/log/log.c"
71#undef LOG_GROUP
72#include "common/log/logellipsis.c"
73#undef LOG_GROUP
74#include "common/log/logrel.c"
75#undef LOG_GROUP
76#include "common/log/logrelellipsis.c"
77#undef LOG_GROUP
78#include "common/log/logcom.c"
79#undef LOG_GROUP
80#include "common/log/logformat.c"
81#undef LOG_GROUP
82#include "common/log/RTLogCreateEx.c"
83#undef LOG_GROUP
84#include "common/misc/RTAssertMsg1Weak.c"
85#undef LOG_GROUP
86#include "common/misc/RTAssertMsg2.c"
87#undef LOG_GROUP
88#include "common/misc/RTAssertMsg2Add.c"
89#undef LOG_GROUP
90#include "common/misc/RTAssertMsg2AddWeak.c"
91#undef LOG_GROUP
92#include "common/misc/RTAssertMsg2AddWeakV.c"
93#undef LOG_GROUP
94#include "common/misc/RTAssertMsg2Weak.c"
95#undef LOG_GROUP
96#include "common/misc/RTAssertMsg2WeakV.c"
97#undef LOG_GROUP
98#include "common/misc/assert.c"
99#undef LOG_GROUP
100#include "common/misc/thread.c"
101#undef LOG_GROUP
102#include "common/string/RTStrCat.c"
103#undef LOG_GROUP
104#include "common/string/RTStrCmp.c"
105#undef LOG_GROUP
106#include "common/string/RTStrCopy.c"
107#undef LOG_GROUP
108#include "common/string/RTStrCopyEx.c"
109#undef LOG_GROUP
110#include "common/string/RTStrCopyP.c"
111#undef LOG_GROUP
112#include "common/string/RTStrEnd.c"
113#undef LOG_GROUP
114#include "common/string/RTStrICmpAscii.c"
115#undef LOG_GROUP
116#include "common/string/RTStrNICmpAscii.c"
117#undef LOG_GROUP
118#include "common/string/RTStrNCmp.c"
119#undef LOG_GROUP
120#include "common/string/RTStrNLen.c"
121#undef LOG_GROUP
122#include "common/string/stringalloc.c"
123#undef LOG_GROUP
124#include "common/string/strformat.c"
125#undef LOG_GROUP
126#include "common/string/RTStrFormat.c"
127#undef LOG_GROUP
128#include "common/string/strformatnum.c"
129#undef LOG_GROUP
130#include "common/string/strformattype.c"
131#undef LOG_GROUP
132#include "common/string/strprintf.c"
133#undef LOG_GROUP
134#include "common/string/strprintf-ellipsis.c"
135#undef LOG_GROUP
136#include "common/string/strprintf2.c"
137#undef LOG_GROUP
138#include "common/string/strprintf2-ellipsis.c"
139#undef LOG_GROUP
140#include "common/string/strtonum.c"
141#undef LOG_GROUP
142#include "common/string/utf-8.c"
143#undef LOG_GROUP
144#include "common/table/avlpv.c"
145#undef LOG_GROUP
146#include "common/time/time.c"
147#undef LOG_GROUP
148#include "generic/RTAssertShouldPanic-generic.c"
149#undef LOG_GROUP
150#include "generic/RTLogWriteStdErr-stub-generic.c"
151#undef LOG_GROUP
152#include "generic/RTLogWriteStdOut-stub-generic.c"
153#undef LOG_GROUP
154#include "generic/RTMpGetCoreCount-generic.c"
155#undef LOG_GROUP
156#include "generic/RTSemEventWait-2-ex-generic.c"
157#undef LOG_GROUP
158#include "generic/RTSemEventWaitNoResume-2-ex-generic.c"
159#undef LOG_GROUP
160#include "generic/RTSemEventMultiWait-2-ex-generic.c"
161#undef LOG_GROUP
162#include "generic/RTSemEventMultiWaitNoResume-2-ex-generic.c"
163#undef LOG_GROUP
164#include "generic/rtStrFormatKernelAddress-generic.c"
165#undef LOG_GROUP
166#include "generic/errvars-generic.c"
167#undef LOG_GROUP
168#include "generic/mppresent-generic.c"
169#undef LOG_GROUP
170#include "generic/system-page-size-generic.c"
171#undef LOG_GROUP
172#include "VBox/log-vbox.c"
173#undef LOG_GROUP
174#include "VBox/logbackdoor.c"
175#undef LOG_GROUP
176#if defined(RT_ARCH_AMD) || defined(RT_ARCH_X86)
177# include "VBox/RTLogWriteVmm-amd64-x86.c"
178#else
179# include "generic/RTLogWriteVmm-stub-generic.c"
180#endif
181
182#ifdef RT_ARCH_AMD64
183# undef LOG_GROUP
184# include "common/alloc/heapsimple.c"
185#endif
186
187#if defined(RT_ARCH_ARM64) || defined(RT_ARCH_ARM32)
188# undef LOG_GROUP
189# include "common/asm/ASMMultU64ByU32DivByU32-generic.c"
190#endif
191
192#if 0 //def RT_ARCH_X86 - iprt/nocrt/limit.h clashes.
193# include "common/math/gcc/divdi3.c"
194# include "common/math/gcc/moddi3.c"
195# include "common/math/gcc/udivdi3.c"
196# include "common/math/gcc/udivmoddi4.c"
197# include "common/math/gcc/umoddi3.c"
198# include "common/math/gcc/qdivrem.c"
199#endif
200
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use