You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Calling System.exit() is a pretty brutal way of exiting.
Most programs don't need that. Since this is a multithreaded program, you need to stop the execution of these threads. There are less brutal ways to do it, like, letting them exit the loops they are in, and run to their respective ends. Then they can be joined with the main thread.
Disclaimer: I'm much less experienced with multithreaded programming than you are. I might be wrong.
The text was updated successfully, but these errors were encountered:
XR3Player/src/main/java/com/goxr3plus/xr3player/application/MainExit.java
Line 96 in b222ce4
Calling System.exit() is a pretty brutal way of exiting.
Most programs don't need that. Since this is a multithreaded program, you need to stop the execution of these threads. There are less brutal ways to do it, like, letting them exit the loops they are in, and run to their respective ends. Then they can be joined with the main thread.
Disclaimer: I'm much less experienced with multithreaded programming than you are. I might be wrong.
The text was updated successfully, but these errors were encountered: