C++多線程編程On Linux

來源:互聯網
上載者:User

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)!

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.