mirror of
https://github.com/microsoft/krabsetw
synced 2026-06-06 16:14:32 +00:00
79e8af192e
* add stack trace helpers (#26) * use windows-2019 for builds * [PR feedback] rename StackTrace method to GetStackTrace
25 lines
766 B
C#
25 lines
766 B
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
namespace ManagedExamples
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
// Comment in/out the particular example you'd like to run.
|
|
KernelTrace001.Start();
|
|
//KernelTrace002.Start();
|
|
//UserTrace001.Start();
|
|
//UserTrace002.Start();
|
|
//UserTrace003.Start();
|
|
//UserTrace004.Start();
|
|
//UserTrace005.Start();
|
|
//UserTrace006_Rundown.Start();
|
|
//UserTrace007_StackTrace.Start();
|
|
//FakingEvents001.Start();
|
|
//WppTrace001.Start();
|
|
}
|
|
}
|
|
}
|