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

来源:互联网 发布:下载源码的网站 编辑:程序博客网 时间:2024/04/30 15:50

转载自:http://blog.csdn.net/o929778452o/article/details/7241072?readlog


错误:

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 参数。

阅读全文
0 0
原创粉丝点击