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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-04-11[2019-02] [profiler] Add duration=NUM parameter to AOT profiler (#13688) ↵Radek Doulik
(#13967) * [profiler] Do not print that many new lines (#13060) The `mono_profiler_printf` already adds `\n` char, so we don't need to add them in most cases. Before the fix the output of aot profiler with verbose enabled looked like: 02-19 10:50:02.877 22795 22815 I mono-prof: System.OutOfMemoryException:.ctor (string) 2 02-19 10:50:02.877 22795 22815 I mono-prof: 02-19 10:50:02.877 22795 22815 I mono-prof: System.SystemException:.ctor (string) 4 02-19 10:50:02.877 22795 22815 I mono-prof: 02-19 10:50:02.877 22795 22815 I mono-prof: System.Exception:.ctor (string) 6 02-19 10:50:02.877 22795 22815 I mono-prof: 02-19 10:50:02.877 22795 22815 I mono-prof: System.Exception:.cctor () 7 02-19 10:50:02.877 22795 22815 I mono-prof: ... The `usage ()`'s output should now look similar to other profilers usage output. * [profiler] Add duration=NUM parameter to AOT profiler (#13688) * [profiler] Add duration=NUM parameter to AOT profiler It instructs the AOT profiler to write the data after NUM seconds measured from runtime initialization. * [profilers] Added aot:duration=NUM parameter description
2017-11-28[profiler] Make it possible to trigger heapshots from the M.P.L library.Alex Rønne Petersen
Also make it so on-demand heapshots can be done regardless of the heapshot mode in use. There really wasn't a good reason to not allow it before.
2017-11-23[man] Rewrite the profiler-related man pages.Alex Rønne Petersen
* Separate profiler module documentation into a new mono-profilers(1) page. * Add documentation for the aot and coverage profilers. * Rewrite the mprof-report(1) page to only talk about mprof-report itself. * Rewrite and update the profiler-related sections of mono(1). * Conform to man page formatting conventions.