在線程對共享相同內(nèi)存操作時,就會出現(xiàn)多個線程對同一資源的使用,為此,需要對這些線程進行同步,以確保它們在訪問共享內(nèi)存的時候不會訪問到無效的數(shù)值。
以下是線程的幾種同步方式:
1、 互斥量。
通過使用pthread的互斥接口保護數(shù)據(jù),確保同一時間只有一個線程訪問數(shù)據(jù)?;コ饬繌谋举|(zhì)上講是一把鎖,在訪問共享資源前對互斥量進行加鎖,在訪問完成后釋放互斥量上的鎖。如下例所示,就是互斥量對共享數(shù)據(jù)的操作:
}
2、信號量
該信號量是Posix提供的基于內(nèi)存的信號量,它們由應用程序分配信號量的內(nèi)存空間。如下例所示,就是信號量對共享數(shù)據(jù)的操作:
#include
#include
#include
int value = 5;
sem_t sem1,sem2;
void mainshow();
void *mythread();
int main()
{
int retval;
pthread_t tid;
retval = sem_init(&sem1,0,0);
retval = sem_init(&sem2,0,1);
retval =pthread_create(&tid,NULL,mythread,NULL);
mainshow();
pthread_join(tid,NULL);
printf(“value3 = %d\n”,value);
return 0;
}
void *mythread()
{
int retval;
retval = sem_wait(&sem1);
value = value + 1;
printf(“value1 = %d\n”,value);
retval = sem_post(&sem2);
pthread_exit((void *) 0);
}
void mainshow()
{
int retval;
retval = sem_wait(&sem2);
value = value + 1;
printf(“value2 = %d\n”,value);
retval = sem_post(&sem1);
}
責任編輯:gt
-
數(shù)據(jù)
+關(guān)注
關(guān)注
8文章
6811瀏覽量
88743 -
線程
+關(guān)注
關(guān)注
0文章
503瀏覽量
19636
發(fā)布評論請先 登錄
相關(guān)推薦
評論