码迷,mamicode.com
首页 > 编程语言 > 详细

多线程的坑--volatile

时间:2018-03-19 18:13:49      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:多线程   volatile   

多线程编程中 开优化选项时要谨慎否则容易掉坑里
先看下面的代码,开起两个线程,第二个线程把第一个线程的循环条件置成false 按逻辑来说这个应该能顺利结束的不过如果用
g++ -O3 -o multiThread multiThread.cpp -lpthread
编译的话TestThread1是退不出来的,只有 g_brun 加上 volatile关键字才能正常退出
因为在-O3优化选项下 执行TestThread1时g_brun会先读到寄存器中,编译器发现这个函数中g_brun没有任何改变所以不会再去内存中取值直接用寄存器中的备份,在TestThread2中改变了g_brun在内存中的值,对TestThread1中g_brun的寄存器备份没有任何影响。
加上volatile表示对该变量不优化每次都去内存中取值。

#include <pthread.h>
#include <iostream>
#include <unistd.h>
using namespace std;

//volatile bool g_brun = true;
bool g_brun = true;

void* TestThread1(void* arg)
{
    cout << "TestThread1 进入" << endl;

    long long ll = 0;
    while(g_brun)
        ll ++; 

    cout << "TestThread1 退出   ll:" << ll << endl;
}

void* TestThread2(void* arg)
{
    cout << "TestThread2 进入" << endl;
    g_brun = false;
    cout << "TestThread2 退出  设置 g_brun = false" << endl;
}

int main()
{
    pthread_t threadId1;
    pthread_create(&threadId1, NULL, TestThread1, NULL);
    usleep(1000000); // 保证TestThread1先执行
    pthread_t threadId2;
    pthread_create(&threadId2, NULL, TestThread2, NULL);

    pthread_join(threadId1,NULL);
    pthread_join(threadId2,NULL);

    return 0;
}

多线程的坑--volatile

标签:多线程   volatile   

原文地址:http://blog.51cto.com/13611395/2088655

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!