| 61 | } |
| 62 | |
| 63 | static void printStack(void *frames[], int numFrames) |
| 64 | { |
| 65 | for (int i = 0; i < numFrames; ++i) { |
| 66 | const std::string &stackInfo = demangle(frames[i]); |
| 67 | qCCritical(logDPF, "* %d> %s", i, stackInfo.data()); |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | static void printStack(int firstFramesToSkip) |
| 72 | { |
no test coverage detected