|
From: João C. <joa...@is...> - 2009-12-10 12:23:51
|
Hi, I'm creating a tool for valgrind. Currently, I'm doing some taintedness propagation using code instrumentation, I want to instrument code from libc (ex: gets, scanf) , but it seems that valgrind doesn't instrument code from this library. What can I do to make my tool instrument libc's code? Or am I overlooking something? Thanks, João Carreira |
|
From: Filipe C. <fi...@gm...> - 2009-12-10 22:15:56
|
Hi. Why do you say valgrind doesn't instrument libc? What lead you to think that? Regards, F On 12/10/09 12:12, João Carreira wrote: > Hi, > > I'm creating a tool for valgrind. > Currently, I'm doing some taintedness propagation using code > instrumentation, > I want to instrument code from libc (ex: gets, scanf) , but it seems > that valgrind doesn't instrument code from this library. > What can I do to make my tool instrument libc's code? Or am I > overlooking something? > > Thanks, > João Carreira > > > > ------------------------------------------------------------------------------ > Return on Information: > Google Enterprise Search pays you back > Get the facts. > http://p.sf.net/sfu/google-dev2dev > > > > _______________________________________________ > Valgrind-developers mailing list > Val...@li... > https://lists.sourceforge.net/lists/listinfo/valgrind-developers |
|
From: João C. <joa...@is...> - 2009-12-12 19:26:46
|
Hi, my dump of VEX code didn't show any libc's code. I figured out I was messing up valgrind's instrumentation. Now it works fine. Thanks, JC |