-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathBreakpointData.cs
More file actions
38 lines (36 loc) · 1.25 KB
/
BreakpointData.cs
File metadata and controls
38 lines (36 loc) · 1.25 KB
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
35
36
37
38
namespace PSExt
{
public class BreakpointData
{
public BreakpointData(ulong offset, BreakType breakType, BreakpointFlags flags,
DataBreakpointAccessTypes dkind, uint dataSize, uint procType,
uint matchThread, uint id, uint passCount, uint currentPasscount, string command, string expr)
{
Offset = offset;
Flags = flags;
BreakType = breakType;
DataBreakpointKind = dkind;
DataSize = dataSize;
ProcType = procType;
MatchThread = matchThread;
Id = id;
PassCount = passCount;
CurrentPassCount = currentPasscount;
Command = command;
Expression = expr;
}
public uint Id { get; private set; }
public ulong Offset { get; private set; }
public BreakType BreakType { get; private set; }
public BreakpointFlags Flags { get; private set; }
public DataBreakpointAccessTypes DataBreakpointKind { get; private set; }
public uint DataSize { get; private set; }
public uint ProcType { get; private set; }
//The engine thread ID of the thread that can trigger this breakpoint.
public uint MatchThread { get; private set; }
public uint PassCount { get; private set; }
public uint CurrentPassCount { get; private set; }
public string Command { get; private set; }
public string Expression { get; private set; }
}
}