Increase max etw arguments to 64
authorDavid Mason <davmason@microsoft.com>
Mon, 11 Apr 2016 20:38:16 +0000 (13:38 -0700)
committerDavid Mason <davmason@microsoft.com>
Mon, 11 Apr 2016 20:38:16 +0000 (13:38 -0700)
src/mscorlib/src/System/Diagnostics/Eventing/EventProvider.cs

index 44731df..48888c7 100644 (file)
@@ -99,7 +99,7 @@ namespace System.Diagnostics.Tracing
         private static WriteEventErrorCode s_returnCode; // The last return code 
 
         private const int s_basicTypeAllocationBufferSize = 16;
-        private const int s_etwMaxNumberArguments = 32;
+        private const int s_etwMaxNumberArguments = 64;
         private const int s_etwAPIMaxRefObjCount = 8;
         private const int s_maxEventDataDescriptors = 128;
         private const int s_traceEventMaximumSize = 65482;