-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEventHeaderFlags.cs
More file actions
34 lines (29 loc) · 862 Bytes
/
EventHeaderFlags.cs
File metadata and controls
34 lines (29 loc) · 862 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
#pragma warning disable CA1711 // Identifiers should not have incorrect suffix
namespace Microsoft.LinuxTracepoints
{
/// <summary>
/// Values for EventHeader.Flags.
/// </summary>
[System.Flags]
public enum EventHeaderFlags : byte
{
/// <summary>
/// Pointer32, BigEndian, no extensions.
/// </summary>
None = 0x00,
/// <summary>
/// Pointer is 64 bits, not 32 bits.
/// </summary>
Pointer64 = 0x01,
/// <summary>
/// Event uses little-endian, not big-endian.
/// </summary>
LittleEndian = 0x02,
/// <summary>
/// There is at least one EventHeaderExtension block.
/// </summary>
Extension = 0x04,
}
}