我正在创建一个线程管理类,我可以发布任务(函数+参数),并且该类将负责处理它们。
问题与这整个类(我认为)没有多大关系,但更多的是在使用多个线程时锁定共享资源的一般问题。 这是代码:
主要测试文件:
#include <iostream>
#include <thread>
#include <vector>
#include "Ttask_1.h"
#include <mutex>
using namespace std;
bool quit=false;
void* square(void* n);
void* print(void* n);
mutex cout_mutex;
mutex res_mutex;
bool cout_locked=false;
vector<Ttask_1<void*,void*>*> tasks1;
vector<Ttask_1<void*,void*>*> tasks2;
void check_for_work(vector<void*> &vec,vector<Ttask_1<void*,void*>*> &tasks)
{
while(!quit)
{
if(tasks.size()!=0)
{
(*tasks[0]).run(vec);
tasks.erase(tasks.begin());
}
else
quit=true;
}
while(cout_locked){}
cout_locked=true;
cout<<"thread done"<<endl;
cout_locked=false;
}
int main(int argc, const char * argv[])
{
vector<void*> vec;
int n=5;
//int *n_p=&n;
//Ttask_1<void*,void*> task(&n,square);
tasks1.push_back(new Ttask_1<void*,void*>(&n,square,true));
tasks1.push_back(new Ttask_1<void*,void*>(&n,print,false));
tasks2.push_back(new Ttask_1<void*,void*>(&n,square,true));
tasks2.push_back(new Ttask_1<void*,void*>(&n,print,false));
thread Thread1(check_for_work,ref(vec),ref(tasks2));
thread Thread2(check_for_work,ref(vec),ref(tasks1));
//(&Ttask_1<int,int>::run,&task,ref(vec));
// task.run(vec,Thread);
Thread1.join();
Thread2.join();
int a;
cin>>a;
return 0;
}
void* print(void* n)
{
for(int i=0;i<*(int*)(n);i++)
{
while(cout_locked){}
cout_locked=true;
cout<<i<<endl;
cout_locked=false;
}
void* a;
return a;
}
void* square(void* n)
{
int res=(*(int*)n)*(*(int*)n);
while(cout_locked){}
cout_locked=true;
cout<<res<<endl;
cout_locked=false;
int *res_p=new int;
res_p=&res;
return res_p;
}
ttask_1类:
#ifndef task_Test_Ttask_1_h
#define task_Test_Ttask_1_h
#include <vector>
#include <mutex>
using namespace std;
extern mutex res_mutex;
template <class type1, class ret>
class Ttask_1
{
public:
Ttask_1(type1 arg_in,ret(*func_p_in)(type1),bool result)
{
safe_result=result;
arg1=arg_in;
func_p=func_p_in;
}
void run(vector<void*> &res_vector)
{
ret res=(*func_p)(arg1);
if(safe_result)
{
void *res_p=&res;
res_mutex.lock();
res_vector.push_back(res_p);
res_mutex.unlock();
}
done=true;
}
bool is_done(){return done;}
private:
bool safe_result;
bool done=false;
type1 arg1;
ret(*func_p)(type1);
};
#endif
正如您所看到的,我实施了自己的“锁定”功能。在我看到互联网没有工作之后,cout上的东西。行为完全相同所以这不是问题。
,行为如下:
我希望数字0,1,2,3,4,25和字符串&#39;线程完成&#39;在程序终止之前全部打印两次。
然而,经常(并非总是,但经常)我得到这个输出:
25 0 1 2 3 4线程完成线程
所以有几个号码丢失了,我不知道是什么原因引起的。正如我所说,如果我替换自己的
while(cout_locked){}
cout_locked=true;
通过
cout_mutex.locked();
和
cout_locked=false;
通过
cout_mutex.unlock()
没有任何改变。
感谢任何帮助,谢谢
答案 0 :(得分:1)
您的主要问题是quit
是一个全局变量。一旦一个线程完成,另一个线程将不再做任何工作(这可能包括根本不做任何工作)。每个线程都需要quit
- 样式变量,或者只需使用size
检查作为while循环的条件。
您还将局部变量的地址放入vector
函数中的run
,这样您的结果可能无法预测。为什么结果向量实际上不是类型安全的?
那说你的代码存在许多功能性和惯用性问题:
cout_locked
变量似乎只能起作用,那里有竞争条件 - 但我确实不确定cout
是否需要锁定。void*
,如果你只是放弃它,就会丢掉C ++提供的类型安全性。done
)。erase
,这是从矢量中删除效率最低的位置。如果它代表队列,请根据您的需要使用queue
或deque
。print
返回一个随机指针。如果你需要它返回void*
,至少让它一直返回null(0
)。答案 1 :(得分:0)
此代码返回指向局部变量的指针。该变量在访问时将超出范围。它也泄漏了记忆。
int *res_p=new int;
res_p=&res;
return res_p;
您需要使用值构建新的int
,而不是使用&
获取本地地址。
return new int(res_p);
您还需要在访问任务向量时锁定。