Linux下undefined reference to ‘pthread_create’问题解决

接触了Linux系统编程中的线程编程模块,可gcc sample.c(习惯把书上的sample代码写进sample.c文件中)出现“undefined reference to ‘pthread_create’”,所有关于线程的函数都会有此错误,导致无法编译通过。

问题的原因:pthread不是Linux下的默认的库,也就是在链接的时候,无法找到phread库中哥函数的入口地址,于是链接会失败。

解决:在gcc编译的时候,附加要加 -lpthread参数即可解决。

#include <stdio.h> 
#include <pthread.h> 
#include <unistd.h> 
pthread_t ntid; 
void printids(const char * s) 
{ 
    pid_t pid; 
    pthread_t tid; 
    pid = getpid(); 
    tid = pthread_self(); 
    printf("%s pid %u tid %u (0x%x)\n",s,(unsigned int)pid, 
            (unsigned int)tid,(unsigned int)tid); 
} 
void * thr_fn(void * arg) 
{ 
    printids("new thread:"); 
    return ((void *)0); 
} 
int main(void) 
{ 
    int err; 
    err = pthread_create(&ntid,NULL,thr_fn,NULL); 
    if(err != 0) 
        printf("pthread_create error \n"); 
    printids("main thread:"); 
    sleep(1); 
    return 0; 
}

root@daoluan:/code/pthreadid# gcc sample.c
/tmp/cc1WztL9.o: In function `main’:
sample.c:(.text+0×83): undefined reference to `pthread_create’
collect2: ld returned 1 exit status

root@daoluan:/code/pthreadid# gcc -lpthread sample.c
root@daoluan:/code/pthreadid# ./a.out
main thread: pid 7059 tid 3078141632 (0xb778b6c0)
new thread: pid 7059 tid 3078138736 (0xb778ab70)

本文完 2012-07-15

捣乱小子 http://www.daoluan.net/

 

由于是Linux新手,所以现在才开始接触线程编程,照着GUN/Linux编程指南中的一个例子输入编译,结果出现如下错误:
undefined reference to 'pthread_create'
undefined reference to 'pthread_join'

问题原因:
   pthread 库不是 Linux 系统默认的库,连接时需要使用静态库 libpthread.a,所以在使用pthread_create()创建线程,以及调用 pthread_atfork()函数建立fork处理程序时,需要链接该库。

问题解决:
    在编译中要加 -lpthread参数
    gcc thread.c -o thread -lpthread
    thread.c为你些的源文件,不要忘了加上头文件#include<pthread.h>

转自:http://blog.csdn.net/jiangxinyu/article/details/7778864

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值