Linux 编写线程,调用pthread_create,pthread_join出现undefined reference to..问题

来源:互联网 发布:淘宝店怎么关 编辑:程序博客网 时间:2024/06/05 10:03
undefined reference to 'pthread_create'
undefined reference to 'pthread_join'

问题原因:

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

在编译中要加 -lpthread参数

0 0
原创粉丝点击