KSCrash
KSCrash copied to clipboard
"mutex lock failed: Invalid argument" can't fetch the call stack
Code below can reproduce this error: "mutex lock failed: Invalid argument"
std::mutex *x = new std::mutex(); delete x; x->lock();
I can get every thread's call stack except the crashed thread.
also this: std::string s; s.resize(-1);
and any idea anybody?