前提・実現したいこと
vectorを使うとエラーが発生するので直したい
発生している問題・エラーメッセージ
作成したプログラムを
windows10,wsl2,ubuntu,vscodeのcmakeの拡張機能でデバッグすると
'malloc.c' を開くことができません: ファイル 'vscode-remote://wsl+ubuntu-20.04/build/glibc-eX1tMB/glibc-2.31/malloc/malloc.c' を読み取れません (Error: 存在しないファイル 'vscode-remote://wsl+ubuntu-20.04/build/glibc-eX1tMB/glibc-2.31/malloc/malloc.c' を解決できません)。
とでます。
gdb でデバッグすると
Thread 1 "プログラム名" received signal SIGSEGV, Segmentation fault. 0x00007ffff79d8a2f in unlink_chunk (p=p@entry=0x5555556eb290, av=0x7ffff7b2bb80 <main_arena>) at malloc.c:1453 1453 malloc.c: No such file or directory.
とでます。
デバッグするたびにエラー位置が変わったりするので、よくわかりません。
vectorのpush_back、emplace_back、vectorにvectorを代入したりする場所にエラーが発生します。
該当のソースコード
下のコードはエラーが起きやすい部分を簡略化して書いたものです。
下のコードにエラーが起こるかは分からないです。
c++
1#include <boost/functional/hash.hpp> 2#include <unordered_map> 3#include <unordered_set> 4#include <vector> 5using namespace std; 6using P = pair<int, int>; 7struct A { 8 vector<P> aa; 9 int ab; 10 int ac; 11 unordered_map<P, int, boost::hash<P>> ad; 12 vector<vector<uint_fast64_t>> ae; 13}; 14struct C { 15 int ca; 16 int cb; 17}; 18vector<A> a; 19vector<C> c; 20 21void function1() { 22 // a,cそれぞれ大きさ100ぐらいで作成 23 //a,cのvecotrの要素(aa,ab,acなど)はうまってる 24 // a[i]の各adはだいたい大きさ10ぐらい(全て同じではない) 25 // a[i] の各aeはだいたい大きさae[10][500]くらい 26} 27void function2(unordered_set<P, boost::hash<P>> &s) { 28 int j = 10; 29 while (j > 0) { 30 j--; 31 a.emplace_back(); 32 int i = a.size() - 1; 33 for (auto [x, y] : s) { 34 a[i].aa.push_back({x, y}); 35 } 36 } 37 vector<C> c2 = c; 38} 39int main() { 40 function1(); 41 unordered_set<P, boost::hash<P>> s; 42 s.insert({1, 2}); 43 s.insert({2, 3}); 44 function2(s); 45}
試したこと
function1()ではvectorを利用してもmallocのエラーは起きないです。
function2()の
a.emplace_back();
a[i].aa.push_back({x, y});
vector<C> c2 = c;
のどこかでエラーが起きます。
malloc.cは何もしてないです。
malloc.cを作ったり、場所を移したりしたら良くなるのかもしれないです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。