|
From: Igmar P. <mai...@jd...> - 2005-08-11 14:19:53
|
> > Running valgrind3 with -v produces also for invalid file descriptor
> > warnings a stacktrace
>
> This question has been asked twice recently. Perhaps we should print the
> stack trace by default? Or upgrade these warnings to full error messages
> so dups aren't shown, they can be suppressed, etc?
I'm in favor of the 'make them errors' option. The only problem I see is
code doing :
int i;
for (i = 0; i < getdtablesize(); i++) {
close(i);
}
which I've seen numerous times in code.
Regards,
Igmar
|