summaryrefslogtreecommitdiff
path: root/src/gc
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2015-09-12 08:50:59 -0700
committerJan Kotas <jkotas@microsoft.com>2015-09-12 09:07:09 -0700
commit1d78cb898e00369d6894af174d5727fc6660a211 (patch)
tree24f530bf141604751412edcc28c89dfe78afd64a /src/gc
parent3691f2a234c0ef361a54a946098ebdfdcf4fc391 (diff)
downloadcoreclr-1d78cb898e00369d6894af174d5727fc6660a211.tar.gz
coreclr-1d78cb898e00369d6894af174d5727fc6660a211.tar.bz2
coreclr-1d78cb898e00369d6894af174d5727fc6660a211.zip
Move sample GC environment to separate directory
Diffstat (limited to 'src/gc')
-rw-r--r--src/gc/env/common.cpp (renamed from src/gc/sample/common.cpp)0
-rw-r--r--src/gc/env/common.h (renamed from src/gc/sample/common.h)0
-rw-r--r--src/gc/env/etmdummy.h (renamed from src/gc/sample/etmdummy.h)0
-rw-r--r--src/gc/env/gcenv.cpp (renamed from src/gc/sample/gcenv.cpp)0
-rw-r--r--src/gc/env/gcenv.h (renamed from src/gc/sample/gcenv.h)0
-rw-r--r--src/gc/sample/GCSample.cpp3
-rw-r--r--src/gc/sample/GCSample.vcxproj10
7 files changed, 7 insertions, 6 deletions
diff --git a/src/gc/sample/common.cpp b/src/gc/env/common.cpp
index 1d6f33ee97..1d6f33ee97 100644
--- a/src/gc/sample/common.cpp
+++ b/src/gc/env/common.cpp
diff --git a/src/gc/sample/common.h b/src/gc/env/common.h
index f2b978fb9c..f2b978fb9c 100644
--- a/src/gc/sample/common.h
+++ b/src/gc/env/common.h
diff --git a/src/gc/sample/etmdummy.h b/src/gc/env/etmdummy.h
index 983bba67b3..983bba67b3 100644
--- a/src/gc/sample/etmdummy.h
+++ b/src/gc/env/etmdummy.h
diff --git a/src/gc/sample/gcenv.cpp b/src/gc/env/gcenv.cpp
index fcbb53c950..fcbb53c950 100644
--- a/src/gc/sample/gcenv.cpp
+++ b/src/gc/env/gcenv.cpp
diff --git a/src/gc/sample/gcenv.h b/src/gc/env/gcenv.h
index f7f39cbd85..f7f39cbd85 100644
--- a/src/gc/sample/gcenv.h
+++ b/src/gc/env/gcenv.h
diff --git a/src/gc/sample/GCSample.cpp b/src/gc/sample/GCSample.cpp
index 53a6578678..68b9a88d2b 100644
--- a/src/gc/sample/GCSample.cpp
+++ b/src/gc/sample/GCSample.cpp
@@ -36,7 +36,8 @@
// be reported. There are number of other callbacks that GC calls to optionally allow the execution engine to do its
// own bookkeeping.
//
-// For now, the sample GC environment has some cruft in it to decouple the GC from Windows and rest of CoreCLR. It is something we would like to clean up.
+// For now, the sample GC environment has some cruft in it to decouple the GC from Windows and rest of CoreCLR.
+// It is something we would like to clean up.
//
#include "common.h"
diff --git a/src/gc/sample/GCSample.vcxproj b/src/gc/sample/GCSample.vcxproj
index cc2ef7f682..235d75d396 100644
--- a/src/gc/sample/GCSample.vcxproj
+++ b/src/gc/sample/GCSample.vcxproj
@@ -53,7 +53,7 @@
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<SDLCheck>true</SDLCheck>
<PrecompiledHeaderFile>common.h</PrecompiledHeaderFile>
- <AdditionalIncludeDirectories>.;..</AdditionalIncludeDirectories>
+ <AdditionalIncludeDirectories>.;..;..\env</AdditionalIncludeDirectories>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
@@ -69,7 +69,7 @@
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<SDLCheck>true</SDLCheck>
- <AdditionalIncludeDirectories>.;..</AdditionalIncludeDirectories>
+ <AdditionalIncludeDirectories>.;..;..\env</AdditionalIncludeDirectories>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
@@ -83,6 +83,7 @@
<ClInclude Include="gcenv.h" />
</ItemGroup>
<ItemGroup>
+ <ClCompile Include="GCSample.cpp" />
<ClCompile Include="..\gccommon.cpp" />
<ClCompile Include="..\gceewks.cpp" />
<ClCompile Include="..\gcscan.cpp" />
@@ -92,9 +93,8 @@
<ClCompile Include="..\handletablecore.cpp" />
<ClCompile Include="..\handletablescan.cpp" />
<ClCompile Include="..\objecthandle.cpp" />
- <ClCompile Include="gcenv.cpp" />
- <ClCompile Include="GCSample.cpp" />
- <ClCompile Include="common.cpp">
+ <ClCompile Include="..\env\gcenv.cpp" />
+ <ClCompile Include="..\env\common.cpp">
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
</ClCompile>