创建线程时,undefined reference to 'pthread_create'问题解决

来源:互联网 发布:合版印刷网络下单系统 编辑:程序博客网 时间:2024/06/08 19:35
Linux线程管理中,创建线程时,出现undefined reference to 'pthread_create'问题:
1.问题原因:
       pthread 库不是 Linux 系统默认的库,连接时需要使用静态库 libpthread.a,所以在使用pthread_create()创建线程,以及调用 pthread_atfork()函数建立fork处理程序时,需要链接该库。
2.问题解决方法:
    在编译中要加 -lpthread选项,即
    gcc -ggdb3 thread.c -o thread -lpthread
    (注:thread.c为你要编译的源文件,不要忘了加上头文件#include<pthread.h>)
0 0