#include
#include
#include
//新線程首先運(yùn)行的函數(shù)
void *threaddeal(void *arg)
{
printf("這是一個(gè)新線程.\n"); //輸出新線程提示
}
int main(int arg,char *argv[])
{
pthread_t threadid; //線程的標(biāo)識符
if(pthread_create(&threadid,NULL,threaddeal,NULL) != 0)
//創(chuàng)建一個(gè)新縣城,然后運(yùn)行threaddeal函數(shù)
{
//如果返回值不是0則表示創(chuàng)建線程失敗
printf("%s錯誤出現(xiàn)在第%s行",__FUNCTION__,__LINE__); //打印錯誤信息
exit(0);
}
else
{
sleep(1); //掛起1秒等待線程運(yùn)行
}
return 0;
}
網(wǎng)站名稱:[Linux線程]使用pthread_create函數(shù)來創(chuàng)建一個(gè)線程
分享URL:
http://weahome.cn/article/ipioih.html