mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-21 05:26:23 +00:00
info: remove confusing warning about running under valgrind
We're not actually doing anything differently anywhere when we detect that we're running under valgrind, so let's not print that confusing message that makes people wonder how they can switch it off so they can valgrind the normal code paths. Seeing that we're not doing that nor have done so in the last 10 years we might just as well remove the entire check actually.
This commit is contained in:
parent
26be9f0581
commit
70d692c431
1 changed files with 0 additions and 3 deletions
|
@ -280,9 +280,6 @@ _priv_gst_in_valgrind (void)
|
|||
#ifdef HAVE_VALGRIND_VALGRIND_H
|
||||
if (RUNNING_ON_VALGRIND) {
|
||||
GST_CAT_INFO (GST_CAT_GST_INIT, "we're running inside valgrind");
|
||||
printf ("GStreamer has detected that it is running inside valgrind.\n");
|
||||
printf ("It might now take different code paths to ease debugging.\n");
|
||||
printf ("Of course, this may also lead to different bugs.\n");
|
||||
in_valgrind = GST_VG_INSIDE;
|
||||
} else {
|
||||
GST_CAT_LOG (GST_CAT_GST_INIT, "not doing extra valgrind stuff");
|
||||
|
|
Loading…
Reference in a new issue