Exemplo n.º 1
0
 public ProfileFrame(ProfileLog owner, int frameIndex, long startTime, ProfileSection[] sections)
 {
     Owner      = owner;
     FrameIndex = frameIndex;
     EndTime    = startTime;
     Sections   = sections;
     Calls      = Array.Empty <CallRecord>();
     Markers    = Array.Empty <ProfileMarker>();
 }
Exemplo n.º 2
0
 public PerfNodeStats(ProfileLog owner, string name, int id)
 {
     Owner = owner;
     Name  = name;
     Id    = id;
 }