Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMassimiliano Mantione <massi@mono-cvs.ximian.com>2008-08-21 14:25:26 +0400
committerMassimiliano Mantione <massi@mono-cvs.ximian.com>2008-08-21 14:25:26 +0400
commit6fcabb91700f6c38b5682d29f92658493b6f531b (patch)
tree174720960542d2d657a4446f128d64f67f446ab7 /Mono.Profiler/profiler-decoder-library/BaseTypes.cs
parente0c63420f91e43aed716889388ad0d222320c74c (diff)
Added support for correct accounting of allocations which happened at JIT time.
svn path=/trunk/mono-tools/; revision=111248
Diffstat (limited to 'Mono.Profiler/profiler-decoder-library/BaseTypes.cs')
-rw-r--r--Mono.Profiler/profiler-decoder-library/BaseTypes.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Mono.Profiler/profiler-decoder-library/BaseTypes.cs b/Mono.Profiler/profiler-decoder-library/BaseTypes.cs
index d183447d..c9c1c72b 100644
--- a/Mono.Profiler/profiler-decoder-library/BaseTypes.cs
+++ b/Mono.Profiler/profiler-decoder-library/BaseTypes.cs
@@ -124,7 +124,7 @@ namespace Mono.Profiler {
void ClassStartUnload (LC c, ulong counter);
void ClassEndUnload (LC c, ulong counter);
- void Allocation (LC c, uint size, LM caller, ulong counter);
+ void Allocation (LC c, uint size, LM caller, bool jitTime, ulong counter);
void Exception (LC c, ulong counter);
void MethodEnter (LM m, ulong counter);
@@ -690,7 +690,7 @@ namespace Mono.Profiler {
public virtual void ClassStartUnload (LC c, ulong counter) {}
public virtual void ClassEndUnload (LC c, ulong counter) {}
- public virtual void Allocation (LC c, uint size, LM caller, ulong counter) {}
+ public virtual void Allocation (LC c, uint size, LM caller, bool jitTime, ulong counter) {}
public virtual void Exception (LC c, ulong counter) {}
public virtual void MethodEnter (LM m, ulong counter) {}