2

我写了一段代码,它会得到一个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 并且有一些观察:

  1. 段错误发生在line I
  2. 如果我在 yield 子句之前删除或移动f.close(),段错误就消失了。
  3. 如果我在代码中删除line J,段错误消失了。
  4. 如果我使用较小的数字而不是8192(比如 512),则段错误消失了。

这里有什么问题?

4

1 回答 1

1

“打开的文件太多” - 您超过了打开文件描述符的最大数量

如果我使用较小的数字而不是 8192(比如 512),则段错误消失了。

段错误将发生在 ifstream 内部(不抛出)检查 ulimit -n cat /proc/sys/fs/file-max sysctl

于 2015-01-19T07:18:34.977 回答