Note that there are some explanatory texts on larger screens.

plurals
  1. POScheduling issues in python
    primarykey
    data
    text
    <p>I'm using python to interface a hardware usb sniffer device with the python API provided by the vendor and I'm trying to read (usb packets) from the device in a separate thread in an infinite loop (which works fine). The problem is that my main loop does not seem to ever get scheduled again (my read loop gets all the attention).</p> <p>The code looks much like this:</p> <pre><code>from threading import Thread import time usb_device = 0 def usb_dump(usb_device): while True: #time.sleep(0.001) packet = ReadUSBDevice(usb_device) print "packet pid: %s" % packet.pid class DumpThread(Thread): def run(self): usb_dump() usb_device = OpenUSBDevice() t = DumpThread() t.start() print "Sleep 1" time.sleep(1) print "End" CloseUSBDevice(usb_device) sys.exit(0) </code></pre> <p>(I could paste actual code, but since you need the hardware device I figure it won't help much).</p> <p>I'm expecting this code to start dumping usb packets for about a second before the main thread terminates the entire program. However, all I see is "Sleep 1" and then the <code>usb_dump()</code> procedure runs forever. If I uncomment the "time.sleep(0.001)" statement in the inner loop of the <code>usb_dump()</code> procedure things start working the way I expect, but then the python code becomes unable to keep up with all the packets coming in :-(</p> <p>The vendor tells me that this is an python scheduler problem and not their api's fault and therefor won't help me:</p> <blockquote> <p>«However, it seems like you are experiencing some nuances when using threading in Python. By putting the time.sleep in the DumpThread thread, you are explicitly signaling to the Python threading system to give up control. Otherwise, it is up the Python interpreter to determine when to switch threads and it usually does that after a certain number of byte code instructions have been executed.»</p> </blockquote> <p>Can somebody confirm that python is the problem here? Is there another way to make the DumpThread release control? Any other ideas?</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload