我有这段代码,这里需要同步全局变量 c 的使用吗?流将同时开始工作并且一个线程将覆盖另一个线程的结果并最终得到 2 或 7 是否可行?
#include <iostream>
#include <stdio.h>
#include <pthread.h>
#include <stdlib.h>
int c = 0;
void* write(void*)
{
c += 2;
}
void* read(void*)
{
c += 7;
}
int main()
{
pthread_t t1;
pthread_t t2;
std::cout << "first C = " << c << std::endl;
int r1 = pthread_create(&t1, 0, &write, 0);
int r2 = pthread_create(&t2, 0, &read, 0);
pthread_join(t1, 0);
pthread_join(t2, 0);
std::cout << " C = " << c << std::endl;
return 0;
}