Skip to content

Commit

Permalink
Add public category indices for JIT/GC/CLR/Kernel/Native/Managed
Browse files Browse the repository at this point in the history
  • Loading branch information
xoofx committed Nov 25, 2024
1 parent 288051c commit 3a9e749
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/Ultra.Core/EtwConverterToFirefox.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ public class EtwConverterToFirefox : IDisposable
private ModuleFileIndex _clrJitModuleIndex = ModuleFileIndex.Invalid;
private ModuleFileIndex _coreClrModuleIndex = ModuleFileIndex.Invalid;

private const int CategoryOther = 0;
private const int CategoryKernel = 1;
private const int CategoryNative = 2;
private const int CategoryManaged = 3;
private const int CategoryGC = 4;
private const int CategoryJit = 5;
private const int CategoryClr = 6;
public const int CategoryOther = 0;
public const int CategoryKernel = 1;
public const int CategoryNative = 2;
public const int CategoryManaged = 3;
public const int CategoryGC = 4;
public const int CategoryJit = 5;
public const int CategoryClr = 6;

public EtwConverterToFirefox()
{
Expand Down

0 comments on commit 3a9e749

Please sign in to comment.