2009-03-10 Zoltan Varga <vargaz@gmail.com>
[mono-debugger.git] / samples / profiler / sample.c
blob49af781a55a1001be19f135c4a7e8bf24192f597
1 #include <mono/metadata/profiler.h>
3 /*
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.
7 * Then run mono with:
8 * mono --profile=sample your_application.exe
9 */
11 struct _MonoProfiler {
12 int ncalls;
15 /* called at the end of the program */
16 static void
17 sample_shutdown (MonoProfiler *prof)
19 g_print ("total number of calls: %d\n", prof->ncalls);
22 static void
23 sample_method_enter (MonoProfiler *prof, MonoMethod *method)
25 prof->ncalls++;
28 static void
29 sample_method_leave (MonoProfiler *prof, MonoMethod *method)
33 /* the entry point */
34 void
35 mono_profiler_startup (const char *desc)
37 MonoProfiler *prof;
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);