vote up 0 vote down star
1

Here's a snippet of code I'm using in a loop:

while True:
    print 'loop'
    rlist, wlist, xlist = select.select(readers, [], [], TIMEOUT)
    print 'selected'
    # do stuff

At a certain point, select will block and "selected" is never getting printed. What can cause this behavior? Is it possible there's some kind of deadlock?

UPDATE: I'm running on Ubuntu linux and the reader objects are sockets.

flag

Is it is blocking for longer than TIMEOUT seconds? – Benji York Nov 6 at 17:51
1  
Oh yes. TIMEOUT is 0.1 – Jason Baker Nov 6 at 17:52

2 Answers

vote up 2 vote down

Yes, depending on the OS in question, it is indeed possible for a certain file descriptor to block at OS level in a non-interruptible way even though you've explicitly demanded for it to be non-blocking. Depending on your OS, there may be workarounds to these OS-level bugs (or "misfeatures"), but to offer any further help we need to know exactly what OS is in play and exactly what kinds of objects are in the readers list.

link|flag
Updated. I'm using Ubuntu Jaunty and the objects in readers are sockets. – Jason Baker Nov 6 at 17:54
@Jason, weird -- I can't imagine what would cause such deadlocks in your excellent operating environment. Maybe see if using select.poll or select.epoll is a workaround...? – Alex Martelli Nov 6 at 23:26
vote up 1 vote down

Some longshots...

If TIMEOUT is getting set to None, then select will never timeout. Also, if readers becomes an empty list, select will always wait for the full timeout value (or hang if TIMEOUT is None)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.