boost::interprocess::interprocess_condition::timed_wait() 编译器错误

boost::interprocess::interprocess_condition::timed_wait() compiler error

我正在尝试在共享内存中创建一些对象(这将是一个未来的问题)但是现在我遇到了一个编译器错误(在 RHEL 7.8 上使用 g++ 4.8.5 提升 1.53.0)我想不通。

Event.h

#include <boost/interprocess/sync/interprocess_condition.hpp>
#include <boost/interprocess/sync/interprocess_mutex.hpp>

class Event
{
public:
   Event (std::string name, boost::interprocess::managed_shared_memory shmem);

   int SetEvent ();
   int ResetEvent ();

   int WaitForEvent (int64_t milliseconds = -1);

private:
   typedef boost::interprocess::allocator<boost::interprocess::basic_string<char>, std::char_traits<char> >, boost::interprocess::managed_shared_memory::segment_manager> StringAllocator;
   typedef boost::interprocess::basic_string<char, std::char_traits<char>, StringAllocator> ShareableString;

   typedef boost::interprocess::allocator<boost::interprocess::deque<pwfmo_info_t_>, boost::interprocess::managed_shared_memory::segment_manager> DequeAllocator;
   typedef boost::interprocess::deque<pwfmo_info_t_, DequeAllocator> SharedDeque;

   boost::interprocess::interprocess_mutex Mutex;
   boost::interprocess::interprocess_condition Condition;
   ShareableString mName;
   bool State;
   ShareableDeque  mRegisteredWaits;
}

Event.cpp

#include <boost/date_time/posix_time/ptime.hpp>
#include <boost/interprocess/sync/scoped_lock.hpp>

int Event::WaitForEvent(int64_t milliseconds)
{
    Mutex.lock();
       
    if(!State)
    {   
        boost::posix_time::ptime time;
        if (milliseconds == -1)
        {
            time = boost::date_time::microsec_clock<boost::posix_time::ptime>::local_time();
            time += boost::posix_time::millisec (milliseconds);
        }

        do
        {
            boost::interprocess::scoped_lock<boost::interprocess::interprocess_mutex> lock (Mutex);
            if(milliseconds != -1)
            {
                result = Condition.timed_wait (lock, &time);
            }
            else
            {
                Condition.wait (lock);
            }
        } while(result == 0 && !State);
            
        if (result == 0)
        {
            State = false;
        }
    }

    Mutex.unlock ();
        
    return result;
}

当我尝试编译上面的代码时,我得到以下 timed_wait():

/usr/include/boost/interprocess/sync/interprocess_condition:119:41 required from 'bool boost::interprocess::interprocess_condition::timed_wait (L&, const boost::posix_time::ptime&) [with L=boost::interprocess::interprocess_mutex]'
/usr/include/boost/interprocess/sync/detail/locks.hpp:27:60 error no type named 'mutex_type' in 'class::boost::interprocess_mutex'

我相信我正确地声明和使用了所有内容,但显然有些地方不正确。在过去的几天里,我一直在撕扯我头发上剩下的东西,试图解决这个问题,但我一无所获。 我假设那里有一些 Boost 大师可以 solve/explain 告诉我发生了什么我没有得到的。任何帮助将不胜感激。

我在 do...while() 中添加了一个 scoped_lock 来替换 timed_wait() 和 wait() 调用中的互斥量。这解决了我的编译器问题。