APUE上的一个例子
#include "apue.h" #include <pthread.h> #include <unistd.h> pthread_t ntid; void printids(const char *s) { pid_t pid; pthread_t tid; pid = getpid(); tid = pthread_self(); printf("%s pid %u tid %u (0x%x)\n", s, (unsigned int)pid, (unsigned int)tid, (unsigned int)tid); } void *thr_fn(void *arg) { printids("new thread: "); return ((void *)0); }用gcc编译时出现如下错误:
11_1.c:(.text+0x2e6): undefined reference to `pthread_create'
之前使用<math.h>头文件中的函数也预到过类似的问题,那时是在编译是加上"-lm"选项.
而此处产生这个问题原因是:pthread 库不是 Linux 系统默认的库,连接时需要使用静态库 libpthread.a,所以在使用pthread_create()创建线程,和其他一些与线程操作相关的函数时,需要链接该库。
解决方法:
(1)编译时加上 -lpthread选项.即: gcc 11_1.c -lpthread
(2)gcc -lrt 11_1.c (这个在网上看的有点不大理解)