Update BuildTools, CoreClr, CoreFx, PgoData to preview1-03013-03, preview1-26716...
authordotnet-maestro-bot <dotnet-maestro-bot@microsoft.com>
Tue, 17 Jul 2018 11:27:23 +0000 (04:27 -0700)
committerJan Kotas <jkotas@microsoft.com>
Tue, 17 Jul 2018 11:27:23 +0000 (04:27 -0700)
* Update BuildTools, CoreClr, CoreFx, PgoData to preview1-03013-03, preview1-26716-04, preview1-26717-02, master-20180716-0324, respectively

* Update EventPipe StackWalker usage to specify ALLOW_INVALID_OBJECTS.

Commit migrated from https://github.com/dotnet/coreclr/commit/f22e633a63c3fb2bc2c69110aa3deab350d98ad9

src/coreclr/BuildToolsVersion.txt
src/coreclr/ILAsmVersion.txt
src/coreclr/dependencies.props
src/coreclr/src/vm/eventpipe.cpp

index 94646d2..6bb13bc 100644 (file)
@@ -1 +1 @@
-2.2.0-preview1-03002-01
+2.2.0-preview1-03013-03
index 26f4f7a..3e7bf3f 100644 (file)
@@ -1 +1 @@
-3.0.0-preview1-26704-01
+3.0.0-preview1-26716-04
index 196b098..3796c4d 100644 (file)
 
   <!-- Source of truth for dependency tooling: the commit hash of the dotnet/versions master branch as of the last auto-upgrade. -->
   <PropertyGroup>
-    <CoreFxCurrentRef>8c9a65325fc401a27c76a23299d7501ff24f4dd8</CoreFxCurrentRef>
-    <CoreClrCurrentRef>8c9a65325fc401a27c76a23299d7501ff24f4dd8</CoreClrCurrentRef>
-    <BuildToolsCurrentRef>3b2844e866d3898d43d98aad0e3e57dd5675d259</BuildToolsCurrentRef>
-    <PgoDataCurrentRef>d8a64e527e67cae4bb3c9d93379fd43aa317165b</PgoDataCurrentRef>
+    <CoreFxCurrentRef>d60645ab29d840336360335dfc84e3b055dd6d9d</CoreFxCurrentRef>
+    <CoreClrCurrentRef>d60645ab29d840336360335dfc84e3b055dd6d9d</CoreClrCurrentRef>
+    <BuildToolsCurrentRef>d60645ab29d840336360335dfc84e3b055dd6d9d</BuildToolsCurrentRef>
+    <PgoDataCurrentRef>d60645ab29d840336360335dfc84e3b055dd6d9d</PgoDataCurrentRef>
   </PropertyGroup>
 
   <!-- Tests/infrastructure dependency versions. -->
   <PropertyGroup>
-    <MicrosoftPrivateCoreFxNETCoreAppPackageVersion>4.6.0-preview1-26704-01</MicrosoftPrivateCoreFxNETCoreAppPackageVersion>
-    <MicrosoftNETCorePlatformsPackageVersion>3.0.0-preview1-26704-01</MicrosoftNETCorePlatformsPackageVersion>
-    <PgoDataPackageVersion>99.99.99-master-20180703-0030</PgoDataPackageVersion>
-    <MicrosoftNETCoreRuntimeCoreCLRPackageVersion>3.0.0-preview1-26704-01</MicrosoftNETCoreRuntimeCoreCLRPackageVersion>
+    <MicrosoftPrivateCoreFxNETCoreAppPackageVersion>4.6.0-preview1-26717-02</MicrosoftPrivateCoreFxNETCoreAppPackageVersion>
+    <MicrosoftNETCorePlatformsPackageVersion>3.0.0-preview1-26717-02</MicrosoftNETCorePlatformsPackageVersion>
+    <PgoDataPackageVersion>99.99.99-master-20180716-0324</PgoDataPackageVersion>
+    <MicrosoftNETCoreRuntimeCoreCLRPackageVersion>3.0.0-preview1-26716-04</MicrosoftNETCoreRuntimeCoreCLRPackageVersion>
     <XunitPackageVersion>2.2.0-beta2-build3300</XunitPackageVersion>
     <XunitConsoleNetcorePackageVersion>2.2.0-preview1-02830-02</XunitConsoleNetcorePackageVersion>
     <XunitPerformanceApiPackageVersion>1.0.0-beta-build0015</XunitPerformanceApiPackageVersion>
@@ -51,7 +51,7 @@
   <!-- Package versions used as toolsets -->
   <PropertyGroup>
     <FeedTasksPackage>Microsoft.DotNet.Build.Tasks.Feed</FeedTasksPackage>
-    <FeedTasksPackageVersion>2.2.0-preview1-03002-01</FeedTasksPackageVersion>
+    <FeedTasksPackageVersion>2.2.0-preview1-03013-03</FeedTasksPackageVersion>
   </PropertyGroup>
 
   <!-- Publish symbol build task package -->
index 00e740e..955c757 100644 (file)
@@ -785,7 +785,7 @@ bool EventPipe::WalkManagedStackForThread(Thread *pThread, StackContents &stackC
     StackWalkAction swaRet = pThread->StackWalkFrames(
         (PSTACKWALKFRAMESCALLBACK) &StackWalkCallback,
         &stackContents,
-        ALLOW_ASYNC_STACK_WALK | FUNCTIONSONLY | HANDLESKIPPEDFRAMES);
+        ALLOW_ASYNC_STACK_WALK | FUNCTIONSONLY | HANDLESKIPPEDFRAMES | ALLOW_INVALID_OBJECTS);
 
     return ((swaRet == SWA_DONE) || (swaRet == SWA_CONTINUE));
 }