]> sigrok.org Git - pulseview.git/blobdiff - pv/data/decoderstack.hpp
Fix #181 by changing the global decode lock into an SRD lock
[pulseview.git] / pv / data / decoderstack.hpp
index 64ce13b01253398850cfa99a9921074090507980..e2bf1bd9283b1ed8c39f580f9de039915ffabd2e 100644 (file)
@@ -140,12 +140,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_;