私はこのコードを持っています。ここでは、グローバル変数 c の使用を同期する必要がありますか? ストリームが同時に動作を開始し、1 つのスレッドが別のスレッドの結果を上書きして、最終的に 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;
}