Exemplo n.º 1
0
        public readonly ulong Generation;          // GC generation event refers to

        GcEvent(BinaryReader reader)
        {
            TimeDiff    = reader.ReadULeb128();
            GcEventType = (MonoGCEvent)reader.ReadULeb128();
            Generation  = reader.ReadULeb128();
        }
Exemplo n.º 2
0
 /// <summary>
 /// [time diff: uleb128] nanoseconds since last timing
 /// if exinfo == TypeGc.Event
 ///     [event type: uleb128] GC event (MONO_GC_EVENT_* from profiler.h)
 ///     [generation: uleb128] GC generation event refers to
 /// </summary>
 /// <param name="gcEventType">The GC event</param>
 /// <param name="generation">GC generation event refers to</param>
 public virtual void HandleGc(MonoGCEvent gcEventType, ulong generation)
 {
 }
Exemplo n.º 3
0
		public readonly ulong Generation;  // GC generation event refers to
		
		GcEvent (BinaryReader reader)
		{
			TimeDiff = reader.ReadULeb128 ();
			GcEventType = (MonoGCEvent)reader.ReadULeb128 ();
			Generation = reader.ReadULeb128 ();
		}