@@ -469,23 +469,23 @@ public void TraceOperationBegin(int TaskID, string OperationName, long RelatedCo
469
469
public void TraceOperationRelation ( int TaskID , CausalityRelation Relation )
470
470
{
471
471
if ( IsEnabled ( ) && IsEnabled ( EventLevel . Informational , Keywords . AsyncCausalityRelation ) )
472
- WriteEvent ( TRACEOPERATIONRELATION_ID , TaskID , ( int ) Relation ) ; // optmized overload for this exists
472
+ WriteEvent ( TRACEOPERATIONRELATION_ID , TaskID , ( int ) Relation ) ; // optimized overload for this exists
473
473
}
474
474
475
475
[ Event ( TRACEOPERATIONSTOP_ID , Version = 1 ,
476
476
Level = EventLevel . Informational , Keywords = Keywords . AsyncCausalityOperation ) ]
477
477
public void TraceOperationEnd ( int TaskID , AsyncCausalityStatus Status )
478
478
{
479
479
if ( IsEnabled ( ) && IsEnabled ( EventLevel . Informational , Keywords . AsyncCausalityOperation ) )
480
- WriteEvent ( TRACEOPERATIONSTOP_ID , TaskID , ( int ) Status ) ; // optmized overload for this exists
480
+ WriteEvent ( TRACEOPERATIONSTOP_ID , TaskID , ( int ) Status ) ; // optimized overload for this exists
481
481
}
482
482
483
483
[ Event ( TRACESYNCHRONOUSWORKSTART_ID , Version = 1 ,
484
484
Level = EventLevel . Informational , Keywords = Keywords . AsyncCausalitySynchronousWork ) ]
485
485
public void TraceSynchronousWorkBegin ( int TaskID , CausalitySynchronousWork Work )
486
486
{
487
487
if ( IsEnabled ( ) && IsEnabled ( EventLevel . Informational , Keywords . AsyncCausalitySynchronousWork ) )
488
- WriteEvent ( TRACESYNCHRONOUSWORKSTART_ID , TaskID , ( int ) Work ) ; // optmized overload for this exists
488
+ WriteEvent ( TRACESYNCHRONOUSWORKSTART_ID , TaskID , ( int ) Work ) ; // optimized overload for this exists
489
489
}
490
490
491
491
[ Event ( TRACESYNCHRONOUSWORKSTOP_ID , Version = 1 ,
@@ -573,7 +573,7 @@ internal static Guid CreateGuidForTaskID(int taskID)
573
573
// The thread pool generated a process wide unique GUID from a task GUID by
574
574
// using the taskGuid, the appdomain ID, and 8 bytes of 'randomization' chosen by
575
575
// using the last 8 bytes as the provider GUID for this provider.
576
- // These were generated by CreateGuid, and are reasonably random (and thus unlikley to collide
576
+ // These were generated by CreateGuid, and are reasonably random (and thus unlikely to collide
577
577
uint pid = EventSource . s_currentPid ;
578
578
return new Guid ( taskID ,
579
579
( short ) DefaultAppDomainID , ( short ) ( DefaultAppDomainID >> 16 ) ,
0 commit comments