Lines Matching defs:select
68 import select
788 This is a wrapper around os.read(). It uses select.select() to
820 # then timeout on the select; and then finally admit that they are not alive.
1153 # for Irix which seems to require a blocking call on waitpid or select, so I let read_nonblocking
1538 """This is a wrapper around select.select() that ignores signals. If
1539 select.select raises a select.error exception and errno is an EINTR
1543 # if select() is interrupted by a signal (errno==EINTR) then
1544 # we loop back and enter the select() again.
1549 return select.select (iwtd, owtd, ewtd, timeout)
1550 except select.error, e:
1557 else: # something else caused the select.error, so this really is an exception