This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move AsyncCausality to shared partition
- Loading branch information
1 parent
0f9253f
commit b50b999
Showing
5 changed files
with
85 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
81 changes: 81 additions & 0 deletions
81
src/System.Private.CoreLib/shared/System/Threading/Tasks/AsyncCausalityTracer.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
// Licensed to the .NET Foundation under one or more agreements. | ||
// The .NET Foundation licenses this file to you under the MIT license. | ||
// See the LICENSE file in the project root for more information. | ||
|
||
#if !FEATURE_COMINTEROP | ||
|
||
using System.Diagnostics; | ||
|
||
namespace System.Threading.Tasks | ||
{ | ||
internal enum CausalityTraceLevel | ||
{ | ||
Required = 0, | ||
Important = 1, | ||
Verbose = 2, | ||
} | ||
|
||
internal enum AsyncCausalityStatus | ||
{ | ||
Started = 0, | ||
Completed = 1, | ||
Canceled = 2, | ||
Error = 3, | ||
} | ||
|
||
internal enum CausalityRelation | ||
{ | ||
AssignDelegate = 0, | ||
Join = 1, | ||
Choice = 2, | ||
Cancel = 3, | ||
Error = 4, | ||
} | ||
|
||
internal enum CausalitySynchronousWork | ||
{ | ||
CompletionNotification = 0, | ||
ProgressNotification = 1, | ||
Execution = 2, | ||
} | ||
|
||
// | ||
// Empty implementation of AsyncCausality events | ||
// | ||
internal static class AsyncCausalityTracer | ||
{ | ||
public static readonly bool LoggingOn = false; | ||
|
||
[Conditional("NOOP_ASYNCCASUALITYTRACER")] | ||
public static void EnableToETW(bool enabled) | ||
{ | ||
} | ||
|
||
[Conditional("NOOP_ASYNCCASUALITYTRACER")] | ||
public static void TraceOperationCreation(CausalityTraceLevel traceLevel, int taskId, string operationName, ulong relatedContext) | ||
{ | ||
} | ||
|
||
[Conditional("NOOP_ASYNCCASUALITYTRACER")] | ||
public static void TraceOperationCompletion(CausalityTraceLevel traceLevel, int taskId, AsyncCausalityStatus status) | ||
{ | ||
} | ||
|
||
[Conditional("NOOP_ASYNCCASUALITYTRACER")] | ||
public static void TraceOperationRelation(CausalityTraceLevel traceLevel, int taskId, CausalityRelation relation) | ||
{ | ||
} | ||
|
||
[Conditional("NOOP_ASYNCCASUALITYTRACER")] | ||
public static void TraceSynchronousWorkStart(CausalityTraceLevel traceLevel, int taskId, CausalitySynchronousWork work) | ||
{ | ||
} | ||
|
||
[Conditional("NOOP_ASYNCCASUALITYTRACER")] | ||
public static void TraceSynchronousWorkCompletion(CausalityTraceLevel traceLevel, CausalitySynchronousWork work) | ||
{ | ||
} | ||
} | ||
} | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters