Re: [Mono-dev] Snapshot of stack

2015-03-17 Thread Greg Young
Oo I didn't know that trick thats quite useful. However it won't fix the scenario I am looking for. 1) I can't assure I have stdout of process. 2) I want to do this say 1000 times a second :) There is stuff for doing this with the CLR and I know I can do it with the profiler API it would just be

Re: [Mono-dev] Snapshot of stack

2015-03-17 Thread Rodrigo Kumpera
kill -QUIT the target process On Mon, Mar 16, 2015 at 8:10 PM, Greg Young wrote: > To be clear I know I can do if installed as a profiler but would > prefer to do it from the outside > > On Tue, Mar 17, 2015 at 2:07 AM, Greg Young > wrote: > > I generally know how to snapshot the stack from out

Re: [Mono-dev] Snapshot of stack

2015-03-16 Thread Greg Young
To be clear I know I can do if installed as a profiler but would prefer to do it from the outside On Tue, Mar 17, 2015 at 2:07 AM, Greg Young wrote: > I generally know how to snapshot the stack from outside code in C but > I am not quite sure how to translate mono methods like can be done in > a

[Mono-dev] Snapshot of stack

2015-03-16 Thread Greg Young
I generally know how to snapshot the stack from outside code in C but I am not quite sure how to translate mono methods like can be done in a few ways (like this http://blogs.msdn.com/b/jmstall/archive/2005/11/28/snapshot.aspx) on the clr. Is there any equivalent way of getting this information in