1 | /* $Id: combined-agnostic2.c 93115 2022-01-01 11:31:46Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * SUPDrv - Combine a bunch of OS agnostic sources into one compile unit.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2022 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * The contents of this file may alternatively be used under the terms
|
---|
18 | * of the Common Development and Distribution License Version 1.0
|
---|
19 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | * CDDL are applicable instead of those of the GPL.
|
---|
22 | *
|
---|
23 | * You may elect to license modified versions of this file under the
|
---|
24 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | */
|
---|
26 |
|
---|
27 | #define LOG_GROUP LOG_GROUP_DEFAULT
|
---|
28 | #include "internal/iprt.h"
|
---|
29 | #include <VBox/log.h>
|
---|
30 |
|
---|
31 | #undef LOG_GROUP
|
---|
32 | #include "common/string/RTStrCat.c"
|
---|
33 | #undef LOG_GROUP
|
---|
34 | #include "common/string/RTStrCopy.c"
|
---|
35 | #undef LOG_GROUP
|
---|
36 | #include "common/string/RTStrCopyEx.c"
|
---|
37 | #undef LOG_GROUP
|
---|
38 | #include "common/string/RTStrCopyP.c"
|
---|
39 | #undef LOG_GROUP
|
---|
40 | #include "common/string/RTStrEnd.c"
|
---|
41 | #undef LOG_GROUP
|
---|
42 | #include "common/string/RTStrNCmp.c"
|
---|
43 | #undef LOG_GROUP
|
---|
44 | #include "common/string/RTStrNLen.c"
|
---|
45 | #undef LOG_GROUP
|
---|
46 | #include "common/string/stringalloc.c"
|
---|
47 | #undef LOG_GROUP
|
---|
48 | #include "common/string/strformat.c"
|
---|
49 | #undef LOG_GROUP
|
---|
50 | #include "common/string/RTStrFormat.c"
|
---|
51 | #undef LOG_GROUP
|
---|
52 | #include "common/string/strformatnum.c"
|
---|
53 | #undef LOG_GROUP
|
---|
54 | #include "common/string/strformattype.c"
|
---|
55 | #undef LOG_GROUP
|
---|
56 | #include "common/string/strprintf.c"
|
---|
57 | #undef LOG_GROUP
|
---|
58 | #include "common/string/strprintf-ellipsis.c"
|
---|
59 | #undef LOG_GROUP
|
---|
60 | #include "common/string/strprintf2.c"
|
---|
61 | #undef LOG_GROUP
|
---|
62 | #include "common/string/strprintf2-ellipsis.c"
|
---|
63 | #undef LOG_GROUP
|
---|
64 | #include "common/string/strtonum.c"
|
---|
65 | #undef LOG_GROUP
|
---|
66 | #include "common/table/avlpv.c"
|
---|
67 | #undef LOG_GROUP
|
---|
68 | #include "common/time/time.c"
|
---|
69 | #undef LOG_GROUP
|
---|
70 | #include "generic/RTAssertShouldPanic-generic.c"
|
---|
71 | #undef LOG_GROUP
|
---|
72 | #include "generic/RTLogWriteStdErr-stub-generic.c"
|
---|
73 | #undef LOG_GROUP
|
---|
74 | #include "generic/RTLogWriteStdOut-stub-generic.c"
|
---|
75 | #undef LOG_GROUP
|
---|
76 | #include "generic/RTLogWriteUser-generic.c"
|
---|
77 | #undef LOG_GROUP
|
---|
78 | #include "generic/RTMpGetArraySize-generic.c"
|
---|
79 | #undef LOG_GROUP
|
---|
80 | #include "generic/RTMpGetCoreCount-generic.c"
|
---|
81 | #undef LOG_GROUP
|
---|
82 | #include "generic/RTSemEventWait-2-ex-generic.c"
|
---|
83 | #undef LOG_GROUP
|
---|
84 | #include "generic/RTSemEventWaitNoResume-2-ex-generic.c"
|
---|
85 | #undef LOG_GROUP
|
---|
86 | #include "generic/RTSemEventMultiWait-2-ex-generic.c"
|
---|
87 | #undef LOG_GROUP
|
---|
88 | #include "generic/RTSemEventMultiWaitNoResume-2-ex-generic.c"
|
---|
89 | #undef LOG_GROUP
|
---|
90 | #include "generic/RTTimerCreate-generic.c"
|
---|
91 | #undef LOG_GROUP
|
---|
92 | #include "generic/errvars-generic.c"
|
---|
93 | #undef LOG_GROUP
|
---|
94 | #include "generic/mppresent-generic.c"
|
---|
95 | #undef LOG_GROUP
|
---|
96 | #include "generic/uuid-generic.c"
|
---|
97 | #undef LOG_GROUP
|
---|
98 | #include "VBox/log-vbox.c"
|
---|
99 |
|
---|
100 | #ifdef RT_ARCH_AMD64
|
---|
101 | # undef LOG_GROUP
|
---|
102 | # include "common/alloc/heapsimple.c"
|
---|
103 | #endif
|
---|
104 |
|
---|