From 34092408954f2931aafda51a0a03e7efb4ae89a2 Mon Sep 17 00:00:00 2001 From: Rodrigo Kumpera Date: Tue, 21 Jul 2015 17:51:25 -0400 Subject: [PATCH] [profiler] Correct the profiler format. --- mono/profiler/proflog.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/mono/profiler/proflog.c b/mono/profiler/proflog.c index 61166b862b9..50fc30913bc 100644 --- a/mono/profiler/proflog.c +++ b/mono/profiler/proflog.c @@ -222,14 +222,18 @@ typedef struct _LogBuffer LogBuffer; * [mtype: byte] metadata type, one of: TYPE_CLASS, TYPE_IMAGE, TYPE_ASSEMBLY, TYPE_DOMAIN, * TYPE_THREAD, TYPE_CONTEXT * [pointer: sleb128] pointer of the metadata type depending on mtype - * [flags: uleb128] must be 0 * if mtype == TYPE_CLASS * [image: sleb128] MonoImage* as a pointer difference from ptr_base + * [flags: uleb128] must be 0 * [name: string] full class name * if mtype == TYPE_IMAGE + * [flags: uleb128] must be 0 * [name: string] image file name * if mtype == TYPE_ASSEMBLY + * [flags: uleb128] must be 0 * [name: string] assembly name + * if mtype == TYPE_DOMAIN + * [flags: uleb128] must be 0 * if mtype == TYPE_DOMAIN && exinfo == 0 * [name: string] domain friendly name * if mtype == TYPE_CONTEXT -- 2.11.4.GIT