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
I've noticed that when I count the number of active threads, the InputReportProcessingThread is always active, even when device is disconnected.
InputReportProcessingThread
The following line abort the InputReportReaderThread when device is disconnected but not the InputReportProcessingThread one.
InputReportReaderThread
pywinusb/pywinusb/hid/core.py
Line 730 in bbf8c54
Step to reproduce :
threading.active_count()
name
for t in threading.enumerate(): print(t.name)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I've noticed that when I count the number of active threads, the
InputReportProcessingThread
is always active, even when device is disconnected.The following line abort the
InputReportReaderThread
when device is disconnected but not theInputReportProcessingThread
one.pywinusb/pywinusb/hid/core.py
Line 730 in bbf8c54
Step to reproduce :
threading.active_count()
.name
parameter to theInputReportReaderThread
andInputReportProcessingThread
constructors so I can print active threads names :The text was updated successfully, but these errors were encountered: