我想启动一个执行某些计算的函数的多个实例。该函数接受一个类对象,并且该类包含shared_mutex
我通过引用传递它,因此所有线程都通过同一个对象访问该类。
如果我尝试通过boost :: threads(甚至只有一个)启动函数,我会收到编译错误:
/usr/include/boost/thread/pthread/shared_mutex.hpp:173:9: error:
‘boost::shared_mutex::shared_mutex(boost::shared_mutex&)’ is private
BOOST_THREAD_NO_COPYABLE(shared_mutex)
^
/cl_shared.h:12:7: error: within this context
class cl_shared {
^
如果我直接通过main调用该函数,它可以正常工作。如何多次运行该功能?由于多个线程读/写类,因此互斥体用于线程安全。分解它看起来像:
class cl_shared {
public:
//constructor
cl_shared() { };
//functions here using the mtx
void hello() {
cout<<"hello"<<endl;
};
boost::shared_mutex mtx;
int aint;
};
cl_shared shared;
int main(int argc, char **argv) {
// XMA::mov_avg(shared, arg1); //does work
// boost::thread worker1(XMA::mov_avg, shared, arg1); //error: mutex is private
// boost::thread worker2(XMA::mov_avg, shared, arg1); //like to start it simultaneously;
//boost::thread worker1v2(XMA::mov_avg, boost::ref(shared), 0, avg_typ, pos_vel, w_leng, parse); //does compile, but is it ok?
}
功能如下:
//the function head:
void mov_avg(cl_shared &shared, int arg1){
//do sth.
}
答案 0 :(得分:0)
由于互斥锁是不可复制的,因此任何将其保存为非静态成员的对象也是不可复制的。
您需要将类的实例作为引用指针传递。要通过引用传递它,请使用boost::ref
(或更好,std::ref
)并确保您的线程函数也通过引用接受它的参数。