epolloneshot_test.cpp:(.text+0x582): undefined reference to `pthread_create‘

Posted qq_34132502

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了epolloneshot_test.cpp:(.text+0x582): undefined reference to `pthread_create‘相关的知识,希望对你有一定的参考价值。

编译指令需要在尾部加上-lpthread,如下:

g++ -o epolloneshot_test epolloneshot_test.cpp -lpthread

以上是关于epolloneshot_test.cpp:(.text+0x582): undefined reference to `pthread_create‘的主要内容,如果未能解决你的问题,请参考以下文章

TopN案例

Lua table直接索引VS缓存索引性能测试小示例

如何求解:T(n) = T(n/2) + T(n/4) + T(n/8) + (n)

递归的复杂度:T(n) = T(n-1) + T(n-2) + C

java <T>T和T的区别

Java之泛型<T> T与T的用法