问题原因:
    pthread 库不是 Linux 系统默认的库,连接时需要使用静态库 libpthread.a

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

posted on 2013-08-12 12:04  xieweiwei  阅读(150)  评论(0编辑  收藏  举报