【文件属性】:
文件名称:qt 下进程条
文件大小:4KB
文件格式:RAR
更新时间:2016-02-07 07:26:50
qt 下进程条
qt 下操作进程条的实现代码
#include
#include
int count;
pthread_mutex_t count_mutex=PTHREAD_MUTEX_INITIALIZER;
void *thread_test(void *vptr)
{
int i,value;
for(i=0;i<1000;i++)
{
pthread_mutex_lock(&count;_mutex);
value=count;
printf("%d:%d\n",pthread_self(),value+1);
count=value+1;
pthread_mutex_unlock(&count;_mutex);
}
return (NULL);
}
int main(int argc,char ** argv)
{
pthread_t thread_id1,thread_id2;
pthread_create(&thread;_id1,NULL,&thread;_test,NULL);
pthread_create(&thread;_id1,NULL,&thread;_test,NULL);
pthread_join(thread_id1,NULL);
pthread_join(thread_id2,NULL);
}
【文件预览】:
progress
----progress.pro(146B)
----README(201B)
----Makefile.in(3KB)
----progress.cpp(7KB)
----Makefile(83B)