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
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.
2017-09-25[profiler] Add dedicated coverage profiler (#5622)Ludovic Henry
This is to remove the need to depend on the log profiler and mprof-report to generate code coverage reports
2017-08-11[docs] mprof-report manpage - remove "onlycoverage" log profiler optionUri Simchoni
This option does not exist in the code.
2017-08-11[docs] mprof-report manpage - document heapshot-on-shutdownUri Simchoni
Document the heapshot-on-shutdown log profiler option.
2017-08-11[docs] mprof-report manpage - document '#' output optionUri Simchoni
Document ability to use the log profiler with an open file descriptor.
2017-08-10[docs] mprof-report manpage -- fix desctiption of existing file behaviorUri Simchoni
Fix the description of what happens when the output file already exists.
2017-08-10[docs] remove non-existant option from log profiler manpageUri Simchoni
The option of prepending a '-' to the log profiler output filename is not supported by the code - remove it.
2017-08-10[docs] Capitalization / puctuation fixes in mprof-report manpage.Uri Simchoni
2016-10-02[profiler] Add a nocounters option.Alex Rønne Petersen
2016-10-02[profiler] Drop support for perf events on Linux.Alex Rønne Petersen
2016-10-02[profiler] Remove utils.c/utils.h, move the code to proflog.c/decode.c, and ↵Alex Rønne Petersen
clean it up. * Drop support for fast/null timers. * Use Mono runtime functions for getting the thread ID and allocating buffers.
2016-10-02[profiler] Document and fix the onlycoverage option.Alex Rønne Petersen
2016-10-02[man] Update mprof-report.1 to indicate the correct default maxframes value.Alex Rønne Petersen
2016-09-08[profiler} Don't crash if a zero sampling frequency is given.Alex Rønne Petersen
2016-09-03[man] Update mprof-report.1 to cover new profiler options.Alex Rønne Petersen
Also reformat some sections a bit.
2016-04-20[profiler] Limit the number of allocated sample hit structures.Andi McClure
2016-04-20[profiler] Make the default sample frequency 100 Hz.Alex Rønne Petersen
Our previous default (1000 Hz) was quite extreme and resulted in very high overhead from the profiler for moderate workloads. Also, fix the profiler to actually treat the 'freq' argument as a frequency when passing it to the runtime. It was being incorrectly treated as a sleep interval.
2015-07-11[profiler] Report more metadata load/unload information.Alex Rønne Petersen
We now report: * Start/stop events for threads, domains, and contexts. * Friendly name changes for domains (as for threads). * Assembly load/unload events (as for images). * Unload events for images and classes.
2014-12-16Updated the Mono website links in the man pagesAlexander Köplinger
Even though the old links still work, we can save everyone an unnecessary redirect by using the new links.
2014-06-07[counters] Add counters documentation to man pageLudovic Henry
2010-11-29Log profiler: added statistical sampling mode.Paolo Molaro
* man/mprof-report.1, log-profiler.txt: updated the documentation. * decode.c: added jit report and sample report. * proflog.h, proflog.c: implemented statistical sampling mode, using either the mono built-in signal based sampling and the Linux perforamnce counters perf subsystem. Unmanaged symbols are currently available for ELF systems implementing dl_iterate_phdr() or systems implementing dladdr().
2010-11-12Log profiler: removed the hsmode option, use heapshot=MODE instead.Paolo Molaro
2010-11-11Added the mprof-report manpage.Paolo Molaro