Frage

auf Linux, gcc 4.3, eine Klasse mit boost :: Thread-Implementierung Kompilieren und mutexes / Bedingungsvariablen ich folgende seltsame Fehler erhalten, offenbar wegen Konflikten mit der Posix-Thread-Bibliothek geben:

*Compiling: filter.cpp
/usr/include/boost/thread/condition.hpp: In member function »void boost::condition::wait(L&) [with L = boost::mutex]«:
/host/.../filter.cpp:68:   instantiated from here
/usr/include/boost/thread/condition.hpp:90: Error: no match für »operator!« in »!lock«*
*/usr/include/boost/thread/condition.hpp:90: Notice: candidates are: operator!(bool) <built in>*
*/usr/include/boost/thread/mutex.hpp:66: Error: »pthread_mutex_t boost::mutex::m_mutex« is private
/usr/include/boost/thread/condition.hpp:93: Error: in this context*

Der Code lautet:

void CFilter::process( CData **s )
{
    boost::mutex::scoped_lock bufferLock(m_mutex);
    while (!m_bStop)
        m_change.wait(bufferLock);                      //<- line 68

    // ... further processing
}

mit der Klassendeklaration

#include <boost/shared_ptr.hpp>
#include <boost/bind.hpp>
#include <boost/thread/condition.hpp>
#include <boost/thread/thread.hpp>
#include <boost/thread/mutex.hpp>

class CFilter
{
    // ...
    boost::shared_ptr<boost::thread> m_thread;
    boost::mutex m_mutex;
    boost::condition m_change;
    // ...

    process( CData **s );
}

Der Bedienfehler findet im Boost des condition.hpp, in

if (!lock)
    throw lock_error();

Ich bin mit Boost-1.38.0 unter Windows ich Probleme nicht finden. Jede Hilfe ist willkommen!

War es hilfreich?

Lösung

Sie befinden sich auf der bufferLock warten müssen, nicht m_mutex:

while (!m_bStop)
    m_change.wait(bufferLock);

Zustand <> :: wait () nimmt einen ScopedLock als Parameter, kein Mutex .

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top