https://bugs.kde.org/show_bug.cgi?id=467980
Igor Kushnir <igor...@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |igor...@gmail.com --- Comment #1 from Igor Kushnir <igor...@gmail.com> --- Try opening another session or a new session: `kdevelop -n test-session`. The backtrace is too short. Have you tried attaching to the hanging kdevelop process with GDB and printing the backtrace of all threads? gdb -batch -ex "thread apply all bt" -ex "quit" -p 12345 > /some/path/hanging-kdevelop.bt ("12345" in the command stands for the hanging kdevelop process ID) If you get the `ptrace: Operation not permitted.` error, run the following command before repeating the gdb command: echo 0 | sudo tee /proc/sys/kernel/yama/ptrace_scope (you can revert the configuration change with `echo 1 | sudo tee /proc/sys/kernel/yama/ptrace_scope`) -- You are receiving this mail because: You are watching all bug changes.