摘要:線程同步了解線程信號量的基礎知識,對深入理解的線程會大有幫助。當兩個線程同時執行時,不可避免同時操作同一個變量或者文件等,所以需要有一組機制來確保他們能正確的運行信號量和互斥量。
線程同步
了解線程信號量的基礎知識,對深入理解python的線程會大有幫助。
當兩個線程同時執行時,不可避免同時操作同一個變量或者文件等,所以需要有一組機制來確保他們能正確的運行:信號量和互斥量。信號量可以分為最簡單的“二進制信號量”和更通用的“計數信號量”。信號量通常用來保護一段代碼,使其每次只能被一個執行線程運行,這種情況下需要用到二進制信號量。有時候希望可以允許有限數目的線程執行一段指定代碼,這就需要用到計數信號量。實際上,技術信號量是一種二進制信號量的邏輯擴展,實際兩者調用的函數一樣。
互斥量和信號量很相似,事實上他們可以互相通過對方來實現。但在實際應用中,對于一些情況使用其中一種更符合語義而且效果更好。
用信號量進行同步#include用互斥量進行同步#include #include #include #include #include void *thread_function(void *arg); sem_t bin_sem; #define WORK_SIZE 1024 char work_area[WORK_SIZE]; /* 用來存放輸入內容 */ int main() { int res; /* 暫存一些命令的返回結果 */ pthread_t a_thread; /* 織帶新建的線程 */ void *thread_result; /* 存放線程處理結果 */ res = sem_init(&bin_sem, 0, 0); /* 初始化信號量,并且設置初始值為0*/ if (res != 0) { perror("Semaphore initialization failed"); exit(EXIT_FAILURE); } res = pthread_create(&a_thread, NULL, thread_function, NULL); /* 創建新線程 */ if (res != 0) { perror("Thread creation failed"); exit(EXIT_FAILURE); } printf("Inout some text, Enter "end" to finish "); while(strncmp("end", work_area, 3) != 0) { /* 當工作區內不是以end開頭的字符串時...*/ fgets(work_area, WORK_SIZE, stdin); /* 從標準輸入獲取輸入到worl_area */ sem_post(&bin_sem); /* 信號量+1 */ } printf(" Waiting for thread to finish... "); res = pthread_join(a_thread, &thread_result); /* 等待線程結束 */ if (res != 0) { perror("Thread join failed"); exit(EXIT_FAILURE); } printf("Thread joined "); sem_destroy(&bin_sem); /* 銷毀信號量 */ exit(EXIT_SUCCESS); } void *thread_function(void *arg) { sem_wait(&bin_sem); /* 等待信號量有大于0的值然后-1 */ while(strncmp("end", work_area, 3) != 0) { printf("You input %ld characters ", strlen(work_area)-1); /* 獲取輸入字符串長度 8*/ sem_wait(&bin_sem); /* 等待信號量有大于0的值然后-1 */ } pthread_exit(NULL); }
#include#include #include #include #include #include void *thread_function(void *arg); pthread_mutex_t work_mutex; #define WORK_SIZE 1024 char work_area[WORK_SIZE]; int time_to_exit = 0; /* 用來控制TODO*/ int main() { int res; pthread_t a_thread; void *thread_result; res = pthread_mutex_init(&work_mutex,NULL); /* 初始化一個互斥鎖 */ if (res != 0) { perror("Mutex initialization failed"); exit(EXIT_FAILURE); } res = pthread_create(&a_thread, NULL, thread_function, NULL); /* 創建一個新線程 */ if (res != 0) { perror("Thread creation failed"); exit(EXIT_FAILURE); } pthread_mutex_lock(&work_mutex); /* 嘗試對互斥量加鎖 */ printf("Input some text, Enter "end" to finish "); while(!time_to_exit) { /* 檢查是不是該退出*/ fgets(work_area, WORK_SIZE, stdin); /* 從標準輸入獲取輸入到work_area */ pthread_mutex_unlock(&work_mutex); /* 解鎖互斥量 */ while(1) { pthread_mutex_lock(&work_mutex); if (work_area[0] != "