]> sigrok.org Git - pulseview.git/blobdiff - pv/data/decoderstack.hpp
MainWindow, View::View: Fix two memory errors reported by valgrind
[pulseview.git] / pv / data / decoderstack.hpp
index 64ce13b01253398850cfa99a9921074090507980..7be7308bdda98ec8bd68edcb83ec02c44f573012 100644 (file)
@@ -79,8 +79,7 @@ private:
        static const unsigned int DecodeNotifyPeriod;
 
 public:
-       DecoderStack(pv::Session &session_,
-               const srd_decoder *const decoder);
+       DecoderStack(pv::Session &session, const srd_decoder *const dec);
 
        virtual ~DecoderStack();
 
@@ -140,12 +139,12 @@ private:
        double samplerate_;
 
        /**
-        * This mutex prevents more than one decode operation occuring
-        * concurrently.
+        * This mutex prevents more than one thread from accessing
+        * libsigrokdecode concurrently.
         * @todo A proper solution should be implemented to allow multiple
-        * decode operations.
+        * decode operations in parallel.
         */
-       static std::mutex global_decode_mutex_;
+       static std::mutex global_srd_mutex_;
 
        std::list< std::shared_ptr<decode::Decoder> > stack_;