Linux c 开发-30 pthread_create创建线程

方式一

void *test_thread(void *arg);
pthread_create(&pid, pthread_arr1,test_thread, NULL);

方式二

void test_thread(void *arg);
pthread_create(&pid, NULL,(void* (*)(void*))&test_thread,NULL);
posted @ 2022-11-02 23:52  zhaogaojian  阅读(42)  评论(0编辑  收藏  举报