问题一:

编译线程c文件时,结果出现如下错误:

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

相关文章:

  • 2021-09-28
  • 2021-12-22
  • 2021-05-21
  • 2021-10-08
  • 2022-02-28
  • 2021-06-08
  • 2021-12-14
猜你喜欢
  • 2021-11-26
  • 2021-12-24
  • 2021-10-02
  • 2021-09-13
  • 2021-11-01
  • 2021-04-04
  • 2021-06-30
相关资源
相似解决方案