Hi folks,
I'm developing a custom profiler, which installs callbacks for method enter/leave occurrences, as follows:

#include <mono/metadata/profiler.h>
void
mono_profiler_startup (const char *desc)
{
  /* snip */
  mono_profiler_install_enter_leave (my_method_enter, my_method_leave);
}

I'm looking for an easy way to read and (possibly) modify actual arguments of a method invocation from within the "enter" callback (i.e., my_method_enter).

Thanks,
-- ric
_______________________________________________
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list

Reply via email to