-
-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
openJDK Platform binary process runs forever #117
Comments
I can't reproduce this. As far as I understand, Can you please open a second
and post the three outputs? |
Please find attached files "before", "during" and "after" of outputs of the command wmic process where "name like '%java%'" which you requested (before execution, during and after). I also attached related screenshots of Task Manage |
Thanks for the info. Looks like the Java process for I still can't reproduce this, even on another machine, and with the Microsoft build of OpenJDK. But I made |
Now, all is running as expected: no openJDK Platform binary process after Well done! Great! Thanks a lot! |
This issue is now fixed on If you don't want to wait, you can try out the nightly pre-release tomorrow. Nightly pre-releases are published every morning at around 4am UTC. |
Describe the bug
After executing ltex-cli.bat on any tex-file the process openJDK Platform binary (=java.exe), which occupies about 800 MB, remains in RAM of Windows 10.
Steps to reproduce
ltex-cli.bat <tex file name>
Expected behavior
The process openJDK Platform binary (=java.exe) should be stopped after executing
ltex-cli.bat <tex file name>
LTeX configuration
Default
Version information
Additional context/information
The problem may be solved by manual "killing" java, say, by insetring in the end of
ltex-cli.bat
the stringtaskkill /f /im java.exe > nul
but this is definitely not the good solution since this string kills ALL the instances of running java.exe.
The text was updated successfully, but these errors were encountered: