1 #include <mono/metadata/profiler.h>
4 * Bare bones profiler. Compile with:
5 * gcc -shared -o mono-profiler-sample.so sample.c `pkg-config --cflags --libs mono`
6 * Install the binary where the dynamic loader can find it.
8 * mono --profile=sample your_application.exe
11 struct _MonoProfiler
{
15 /* called at the end of the program */
17 sample_shutdown (MonoProfiler
*prof
)
19 g_print ("total number of calls: %d\n", prof
->ncalls
);
23 sample_method_enter (MonoProfiler
*prof
, MonoMethod
*method
)
29 sample_method_leave (MonoProfiler
*prof
, MonoMethod
*method
)
35 mono_profiler_startup (const char *desc
)
39 prof
= g_new0 (MonoProfiler
, 1);
41 mono_profiler_install (prof
, sample_shutdown
);
43 mono_profiler_install_enter_leave (sample_method_enter
, sample_method_leave
);
45 mono_profiler_set_events (MONO_PROFILE_ENTER_LEAVE
);