linux线程操作
初始化條件變量
int pthread_cond_init(pthread_cond_t *cv,pthread_cond_attr *cattr); 函數(shù)返回值:返回0表示成功,返回其他表示失敗。 參數(shù): pthread_cond_attr是用來設(shè)置pthread_cond_t的屬性,當(dāng)傳入的值是NULL的時候表示使用默認(rèn)的屬性。函數(shù)返回時,創(chuàng)建的條件變量保存在cv所指向的內(nèi)存中,可以用宏P(guān)THREAD_COND_INITIALIZER來初始化條件變量。值得注意的是不能使用多個線程初始化同一個條件變量,當(dāng)一個線程要使用條件變量的時候確保它是未被使用的。
?
條件變量的銷毀
int pthread_cond_destroy(pthread_cond_t *cv); 返回值:返回0表示成功,返回其他值表示失敗。?
條件變量的使用:
int pthread_cond_wait(pthread_cond_t *cv,pthread_mutex_t *mutex) int pthread_cond_signal(pthread_cond_t *cv);?
使用方式如下:
pthread_mutex_lock(&mutex) while or if(線程執(zhí)行的條件是否成立)pthread_cond_wait(&cond,&mutex); 線程執(zhí)行 pthread_mutex_unlock(&mutex);?
?
為什么要加鎖
?
使用while和if判斷線程執(zhí)行條件釋放成立的區(qū)別。
在多線程資源競爭的時候,在一個使用資源的線程里面(消費(fèi)者)判斷資源是否可用,不可用便調(diào)用pthread_cond_wait,在另一個線程里面(生產(chǎn)者)如果判斷資源可用的話,則會調(diào)用pthead_cond_signal發(fā)送一個資源可用的信號。
但是在wait成功之后,資源就不一定可以被使用,因?yàn)橥瑫r有兩個或兩個以上的線程正在等待次資源,wait返回后,資源可能已經(jīng)被使用了,在這種情況下
while(resource == FALSE)pthread_cond_wait(&cond,&mutex);如果之后只有一個消費(fèi)者,就可使用if。
分解pthread_cond_wait動作為以下步驟:
?
有可能多個線程在等待這個資源可用的信號,信號發(fā)出去之后只有一個資源可用,但是有A,B兩個線程在等待,B速度比較快,獲得互斥鎖,然后加鎖,消耗資源,然后解鎖,之后A獲得互斥鎖,但它回去發(fā)現(xiàn)資源已經(jīng)被使用了,它便有兩個選擇,一個失去訪問不存在的資源,另一個就是繼續(xù)等待,那么等待下去的條件就是使用while,要不然使用if的話pthread_cond_wait返回后,就會順序執(zhí)行下去。
?
等待線程:
pthread_cond_wait????? 前要加鎖
pthread_cond_wait????? 內(nèi)部會解鎖,然后等待條件變量被其他線程激活
pthread_cond_wait????? 被激活后會再自動加鎖
?
激活線程
加鎖(和等待線程用同一個鎖)
pthread_cond_signal?? 發(fā)送信號(階躍信號前最后判斷有無等待線程)
解鎖
激活線程的上面三個操作再運(yùn)行時間上都是再等待線程的pthread_cond_wait函數(shù)內(nèi)部。
/*** pthread_if.c ***/ #include<stdio.h> #include<sys/types.h> #include<stdlib.h> #include<unistd.h> #include<pthread.h>pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER; pthread_cond_t cond = PTHREAD_COND_INITIALIZER;int count = 0;void *decrement(void *arg) {printf("in derment\n");pthread_mutex_lock(&mutex);if(count == 0)pthread_cond_wait(&cond,&mutex);count--;printf("----decrement:%d\n",count);printf("out decrement\n");pthread_mutex_unlock(&mutex);return NULL; }void *increment(void *arg) {printf("in increment\n");pthread_mutex_lock(&mutex);count++;printf("-----increment:%d\n",count);if(count != 0){pthread_cond_signal(&cond);}printf("out increment\n");pthread_mutex_unlock(&mutex);return NULL; }int main() {pthread_t tid_in,tid_de;pthread_create(&tid_de,NULL,(void*)decrement,NULL);sleep(1);pthread_create(&tid_in,NULL,(void*)increment,NULL);sleep(1);pthread_join(tid_de,NULL);pthread_join(tid_in,NULL);pthread_mutex_destroy(&mutex);pthread_cond_destroy(&cond);return 0; }?
?
/*** pthread_while.c ***/ #include<stdio.h> #include<stdlib.h> #include<pthread.h> #include<unistd.h>typedef struct node_s {int data;struct node_s *next; }node_t;node_t *head = NULL;pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER; pthread_cond_t cond = PTHREAD_COND_INITIALIZER;void cleanup_handler(void *arg) {printf("cleanup_handler is running.\n");free(arg);pthread_mutex_unlock(&mutex); }void *thread_func(void *arg) {node_t *p = NULL;pthread_cleanup_push(cleanup_handler,p);while(1){pthread_mutex_lock(&mutex);while(NULL == head)pthread_cond_wait(&cond,&mutex);p = head;head = head->next;printf("process %d node\n",p->data);free(p);pthread_mutex_unlock(&mutex);}pthread_cleanup_pop(0);return NULL; }int main() {pthread_t tid;node_t *temp = NULL;int i;pthread_create(&tid,NULL,(void*)thread_func,NULL);for(i = 0; i < 10; i++){temp = (node_t*)malloc(sizeof(node_t));temp->data = i;pthread_mutex_lock(&mutex);temp->next = head;head = temp;pthread_cond_signal(&cond);pthread_mutex_unlock(&mutex);sleep(1);}pthread_cancel(tid);pthread_join(tid,NULL);return 0;}?
轉(zhuǎn)載于:https://www.cnblogs.com/wanghao-boke/p/11613064.html
創(chuàng)作挑戰(zhàn)賽新人創(chuàng)作獎勵來咯,堅持創(chuàng)作打卡瓜分現(xiàn)金大獎總結(jié)
- 上一篇: 多囊卵巢不孕症怎么治疗
- 下一篇: Linux下多线程模拟停车场停车