We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
VM I/O threads seem to capture Stdout and Stdin even after the program ends.
Stdout
Stdin
Possible solution: use bit 14 of KBSR and DSR as a kill signal; 0 => okay, 1 => exit I/O threads.
KBSR
DSR
0 => okay,
1 => exit I/O threads.
EDIT: note, only discovered on Ubuntu 18 LTS & Kubuntu 24 LTS, not present on Windows 10
The text was updated successfully, but these errors were encountered:
Partial resolution, new problem is that program waits for key input on exit. Future solution? Nested threads, tx_rx for input handler
Sorry, something went wrong.
Current stopgap -- "press any key to exit..." on exit.
No branches or pull requests
VM I/O threads seem to capture
Stdout
andStdin
even after the program ends.Possible solution: use bit 14 of
KBSR
andDSR
as a kill signal;0 => okay,
1 => exit I/O threads.
EDIT: note, only discovered on Ubuntu 18 LTS & Kubuntu 24 LTS, not present on Windows 10
The text was updated successfully, but these errors were encountered: