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#include "handletable.h"
18#include "handletable.inl"
19#include "gcenv.inl"
20#include "gceventstatus.h"
21
22#define SERVER_GC 1
23
24namespace SVR {
25#include "gcimpl.h"
26#include "gc.cpp"
27}
28
29#endif // defined(FEATURE_SVR_GC)
30