POSIX多執行緒模式pthread.h函數:
pthread_attr_t attr; //線程屬性結構體,建立線程時加入的參數pthread_attr_init( &attr ); //初始化 pthread_attr_setdetachstate( &attr, PTHREAD_CREATE_JOINABLE ); //是設///置你想要指定線程屬性參數,這個參數表明這個線程是可以join串連的,join功//能表示主程式可以等線程結束後再去做某事,實現了主程式和線程同步功能 pthread_t tid1, tid2; //儲存兩個線程idint ret = pthread_create( &tid1, &attr, say_hello1, ( void* )&index1 ); //建立線程1ret = pthread_create( &tid2, &attr, say_hello2, ( void* )&index2 ); //建立線程2pthread_join( tid1, NULL ); //串連兩個線程 pthread_join( tid2, NULL );
互斥鎖用到的函數:
pthread_mutex_t sum_mutex; //互斥鎖pthread_mutex_init( &sum_mutex, NULL ); //對鎖進行初始化pthread_mutex_lock( &sum_mutex ); //佔用鎖//do something here..pthread_mutex_unlock( &sum_mutex ); //釋放鎖pthread_mutex_destroy( &sum_mutex ); //對鎖進行登出
訊號量用到的函數:
pthread_cond_t tasks_cond; //條件訊號變數pthread_cond_init( &tasks_cond, NULL ); //對條件訊號變數進行初始化pthread_cond_signal( &tasks_cond ); //條件滿足, 發送訊號pthread_cond_wait( &tasks_cond, &tasks_mutex ); //等待訊號pthread_cond_destroy( &tasks_cond ); //對條件訊號變數進行登出
以上就是C++多線程編程On Linux的內容,更多相關內容請關注topic.alibabacloud.com(www.php.cn)!