We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2625f2 commit 7c3b731Copy full SHA for 7c3b731
src/main/java/org/usb4java/javax/AbstractIrpQueue.java
@@ -71,6 +71,7 @@ public void run()
71
}
72
});
73
this.processor.setDaemon(true);
74
+ this.processor.setName("usb4java IRP Queue Processor");
75
this.processor.start();
76
77
src/main/java/org/usb4java/javax/DeviceManager.java
@@ -359,6 +359,7 @@ public void run()
359
360
361
thread.setDaemon(true);
362
+ thread.setName("usb4java Device Scanner");
363
thread.start();
364
365
0 commit comments