What can be the reason for the freezing java app (a game made by JME3)?

What operating system?

All current evidence points to “not doing it right”. I’ve done this on all kinds of operating systems and hardware since they originally introduced the feature in the early 2000s.

2 Likes
uname -a
Linux YRF 5.4.0-42-generic #46-Ubuntu SMP Fri Jul 10 00:24:02 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
1 Like

On Linux you also have other options… kill -3 pid

…or even:
jstack pid

…which works on all platforms and is nice when you don’t have access to the starting console.

3 Likes

I read about jstack is interesting…
but I found the problem, it was because of pathfinding using jme-ai, instead of it I used jme3-recast4j lib and it works without freezing.

1 Like