|
From: Nicholas N. <nj...@ca...> - 2003-03-23 16:03:26
|
On Fri, 21 Mar 2003, Josef Weidendorfer wrote: > In my latest calltree version, I introduced an infrastruction to specify > instrumentation parameters on the basis of a function symbol name. > [snip] > Does it make sense to merge this in some way with the error suppression stuff? By this, I'm guessing you mean: after reading suppressions, if Valgrind translates a function that is mentioned in a suppression, don't instrument it because any errors from it will be suppressed anyway? Two problems with that: (a, minor) you don't get counts of the number of errors suppressed, and (b, major) suppressions rely on calling context, so just considering a function by itself wouldn't work -- errors from it might need to be suppressed if called from function f(), but not if called from function g(). Or maybe I misinterpreted your question... N |