我写了一段代码,得到Segmentation fault
。我不确定它是否是Boost Coroutine或我的代码的错误:
#include <string>
#include <functional>
#include <vector>
#include <fstream>
#include <boost/coroutine/coroutine.hpp>
using namespace std;
template <class T>
using C = boost::coroutines::coroutine<T()>;
string foo(C<string>::caller_type & yield,
std::string fn, int cnt) {
std::ifstream f(fn);
// f.close();
int local_cnt = 0;
while(local_cnt < cnt) {
string l;
getline(f, l);
local_cnt ++;
yield(l);
}
f.close();
}
int main(int argc, char *argv[])
{
vector<C<string> > result;
for(int i = 0; i < 8192; ++i) {
C<string> obj(bind(foo, std::placeholders::_1, "test.txt", 3)); // line I
result.push_back(std::move(obj)); // line J
}
return 0;
}
test.txt
非常大,因此在发生段错误之前永远不会得到eof。我使用了1.55的Boost并且有一些观察结果:
line I
f.close()
,则seg-error消失。line J
,则seg-error消失。8192
(比如512),则seg-error消失。这里的问题是什么?
答案 0 :(得分:1)
&#34;太多打开的文件&#34; - 您超过了打开文件描述符的最大数量
如果我使用较小的数字代替8192(比如512),则seg-error消失。
seg fault将在ifstream内发生(不抛出) 检查ulimit -n cat / proc / sys / fs / file-max 的sysctl