1 | // Licensed to the .NET Foundation under one or more agreements. |
2 | // The .NET Foundation licenses this file to you under the MIT license. |
3 | // See the LICENSE file in the project root for more information. |
4 | |
5 | |
6 | |
7 | #include "common.h" |
8 | |
9 | #if defined(FEATURE_SVR_GC) |
10 | |
11 | #include "gcenv.h" |
12 | |
13 | #include "gc.h" |
14 | #include "gcscan.h" |
15 | #include "gchandletableimpl.h" |
16 | #include "gceventstatus.h" |
17 | |
18 | #define SERVER_GC 1 |
19 | |
20 | |
21 | namespace SVR { |
22 | #include "gcimpl.h" |
23 | #include "gcee.cpp" |
24 | } |
25 | |
26 | #endif // FEATURE_SVR_GC |
27 | |