zoukankan      html  css  js  c++  java
  • undefined reference to 'pthread_create'问题解决 -- 转

    文章出处:http://blog.csdn.net/llqkk/article/details/2854558

    由于是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>

  • 相关阅读:
    文件操作类File
    文件流操作
    自动登录和解/加密
    redis---set类型常用命令
    div
    css2
    css-id选择器
    table标签
    段落标签-换行标签
    input-form-select-a-img-ul-dl标签
  • 原文地址:https://www.cnblogs.com/chenchenluo/p/3394273.html
Copyright © 2011-2022 走看看