Merge pull request #11077 from pgavlin/gh10940
[platform/upstream/coreclr.git] / src / gc / gcsvr.cpp
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 "gcdesc.h"
16 #include "softwarewritewatch.h"
17
18 #define SERVER_GC 1
19
20 namespace SVR { 
21 #include "gcimpl.h"
22 #include "gc.cpp"
23 }
24
25 #endif // defined(FEATURE_SVR_GC)