Re: [osol-discuss] User defined functions call from Dtrace...!

2007-08-06 Thread rps
Thanx suraj, it really helped me to debug my programs... This message posted from opensolaris.org ___ opensolaris-discuss mailing list opensolaris-discuss@opensolaris.org

Re: [osol-discuss] User defined functions call from Dtrace...!

2007-08-06 Thread rps
Hi, May be my question looks silly but I wanna get clarified with experts. I have written several D language scripts which generated lots of output to all my programs. the question is, how does this output helps me to debug my programs. what I mean is, how do I find memory leaks in

[osol-discuss] User defined functions call from Dtrace...!

2007-08-03 Thread rps
Hi, How I do check how many times a user defined function is called, by using dtrace. I did from the command line by passing library and system call as arguments to dtrace: $ dtrace -n PID:libc:malloc for example, I defined a function called fun1() and I 'd like to debug