X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fdata%2Fdecoderstack.hpp;h=7be7308bdda98ec8bd68edcb83ec02c44f573012;hb=36a8185e7e594990d475e6a043d5924605ca0f58;hp=64ce13b01253398850cfa99a9921074090507980;hpb=60d9b99a32e551cffd2b537d3e157d578a761c9b;p=pulseview.git diff --git a/pv/data/decoderstack.hpp b/pv/data/decoderstack.hpp index 64ce13b0..7be7308b 100644 --- a/pv/data/decoderstack.hpp +++ b/pv/data/decoderstack.hpp @@ -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 > stack_;