您的位置:首页 > Web前端

pthread_create函数编译时报错:undefined reference to 'pthread_create'

2012-02-08 08:35 483 查看
错误:

pthread_create函数编译时报错:undefined reference to 'pthread_create'

pthread_create()和pthread_atfork()函数使用时应注意的问题:

源代码:

#include <pthread.h>

void pmsg(void* p)

{

char *msg;

msg = (char*)p;

printf("%s ", msg);

}

int main(int argc, char *argv)

{

pthread_t t1, t2;

pthread_attr_t a1, a2;

char *msg1 = "Hello";

char *msg2 = "World";

pthread_attr_init(&a1);

pthread_attr_init(&a2);

pthread_create(&t1, &a1, (void*)&pmsg, (void*)msg1);

pthread_create(&t2, &a2, (void*)&pmsg, (void*)msg2);

return 0;

}

运行结果:

gcc thread.c -o thread

/tmp/ccFCkO8u.o: In function `main':

/tmp/ccFCkO8u.o(.text+0x6a): undefined reference to `pthread_create'

/tmp/ccFCkO8u.o(.text+0x82): undefined reference to `pthread_create'

collect2: ld returned 1 exit status

原因分析:

由于pthread 库不是 Linux 系统默认的库,连接时需要使用静态库 libpthread.a,所以在使用pthread_create()创建线程,以及调用 pthread_atfork()函数建立fork处理程序时,在编译中要加 -lpthread参数。

解决办法:

例如:在加了头文件#include <pthread.h>之后执行 pthread.c文件,需要使用如下命令:

gcc thread.c -o thread
-lpthread

这种情况类似于<math.h>的使用,需在编译时加 -m 参数。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐