由于pthread库不是Linux系统默认的库,连接时需要使用库libpthread.a
所以,
在gcc编译的使用应该加上 -pthread 选项 (注意不是 -lpthread)
eg:gcc thread.c -pthread -o thread
由于pthread库不是Linux系统默认的库,连接时需要使用库libpthread.a
所以,
在gcc编译的使用应该加上 -pthread 选项 (注意不是 -lpthread)
eg:gcc thread.c -pthread -o thread