Using pthread in c++(在 C++ 中使用 pthread)
问题描述
我在 *.cc
文件中使用 pthread.h
.当我尝试使用 pthread_exit(0);
或 pthread_join(mythrds[yy],NULL);
它说:
I am using pthread.h
in a *.cc
file. when I try to use pthread_exit(0);
or pthread_join(mythrds[yy],NULL);
it says:
.cc:(.text+0x3e): undefined reference to `pthread_exit'
当使用 gcc 在 *.c
文件中编译非常相似的代码时,它可以完美运行.如何在 c++ 中使用 pthread ..(我还添加了 -lpthread)
when complied very similar code in a *.c
file with gcc it work perfect. How Can I use pthread's in c++.. (I also added -lpthread)
..
void *myThreads ( void *ptr )
{
...
pthread_exit(0);
}
..
标志:
g++ -lpthread -Wall -static -W -O9 -funroll-all-loops -finline -ffast-math
推荐答案
您可以尝试使用 g++ 的 -pthread 选项.
You might try using the -pthread option to g++.
-pthread
Adds support for multithreading with the pthreads library. This
option sets flags for both the preprocessor and linker.
这篇关于在 C++ 中使用 pthread的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 C++ 中使用 pthread
基础教程推荐
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 使用从字符串中提取的参数调用函数 2022-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- Windows Media Foundation 录制音频 2021-01-01