android cpp 建立線程

 
int pthread_create(pthread_t *restrict tidp, 
                   const pthread_attr_t *restrict attr, 
                   void *(*start_rtn)(void), 

                   void *restrict arg);  函數

第一個參數爲指向線程標識符的指針。 
第二個參數用來設置線程屬性。 
第三個參數是線程運行函數的起始地址。 
最後一個參數是運行函數的參數。
spa

相關文章
相關標籤/搜索