#include <stdio.h>
#include <pthread.h>
void *ThreadFunc(void *pArg) //参数的值为123
{
int i = 0;
for(; i<10; i++)
{
printf("Hi,I‘m child thread,arg is:%d\n", (int)pArg);
sleep(1);
}
pthread_exit(NULL);
}
int main()
{
pthread_t thdId;
pthread_create(&thdId, NULL, ThreadFunc, (void *)123 );
int i = 0;
for(; i<10; i++)
{
printf("Hi,I‘m main thread,child thread id is:%x\n", thdId);
sleep(1);
}
return 0;
}
编译时需要带上线程库选项:
gcc -o a a.c -lpthread
看到 -lpthread就想到了
Gcc –o ./bin/main.exe ./src/*.c -I ./include/
但是似乎是不同的。搜索如下:包含头文件了,仅能说明有了线程函数的声明, 但是还没有实现, 加上-lpthread是在链接阶段,链接这个库http://zhidao.baidu.com/link?url=4jUrmjtqneMui7KJmOpxti_HDsAvYjmGhwuVJFLVgdHOrKfC3DKs68cm7g0y6FGxpc_qExVCwz4PMbeb_JqnV_
lpthread是表示要连接到pthread的库是这里省略的lib,你应该可以找到共享库libpthread.so的。因为pthread编程用到的函数在pthread库里面,就像你使用pow等数学计算函数,需要用到math.h.需要 -lm。http://zhidao.baidu.com/link?url=pIOHTwSTuya_zuzCPEeT-1ibV01ISyWSUSX_Duu4qA2OKbHCbkr-7HKOBzIGtcxQ27hvrlqEfqcrqVwzW4wzua
原文:http://www.cnblogs.com/kangqy/p/4399621.html