linux多執行緒學習 二 執行緒的建立和退出

2021-06-11 11:13:17 字數 1291 閱讀 6951

1、函式語法簡述。

pthread_create

標頭檔案:       pthread.h

函式原型:    int pthread_create (pthread_t* thread, pthread_attr_t* attr,

void* (start_routine)(void*), void* arg);

函式傳入值: thread: 執行緒識別符號

attr: 執行緒屬性設定

start_routine:執行緒函式入口

arg:傳遞給執行緒函式的引數

返回值:       0: 成功

-1: 失敗 

pthread_exit

標頭檔案:      pthread.h

函式原型:   void pthread_exit (void*  retval);

函式傳入值:retval:pthread_exit()呼叫者執行緒的返回值,可又其他函式如pthread_join來檢索獲取。

phread_join

標頭檔案:      pthread.h

函式原型:   int pthread_join (pthread_t thread, void** thread_return);

函式傳入值:thread:等待執行緒的識別符號。

thread_return:使用者定義的指標,用來儲存被等待執行緒的返回值(不為null值);

函式返回值:成功: 0

失敗:-1

2、函式舉例實現。

#include#include#include#include#includevoid *thread_function(void *arg);

char message = "hello world";

int main()

printf("waiting for thread to finish...\n");

res = pthread_join(a_thread,&thread_result);

if(res != 0)

printf("thread joined,it returned %s\n",(char *)thread_result);

printf("message is now %s\n",message);

exit(exit_success);

}void *thread_function(void *arg)

~~end~~

Linux多執行緒程式設計(二) 執行緒屬性

pthread介面允許我們通過設定每個物件關聯的不同屬性來細調執行緒的行為。include int pthread attr init pthread attr t attr int pthread attr destroy pthread attr t attr 兩個函式的返回值 若成功,返回0 ...

linux多執行緒學習 二 執行緒的建立和退出

1 函式語法簡述。pthread create 標頭檔案 pthread.h 函式原型 int pthread create pthread t thread,pthread attr t attr,void start routine void void arg 函式傳入值 thread 執行緒識...

linux多執行緒學習 二 執行緒的建立和退出

1 函式語法簡述。pthread create 標頭檔案 pthread.h 函式原型 int pthread create pthread t thread,pthread attr t attr,void start routine void void arg 函式傳入值 thread 執行緒識...