This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients gvanrossum, jcea, neologix, vstinner
Date 2013-08-21.09:25:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1377077155.16.0.350558760621.issue18794@psf.upfronthosting.co.za>
In-reply-to
Content
"Just to be explicit (there are typos in Victor's original messages): it's about select.devpoll, for Solaris-derivatives with /dev/poll, and not for select.poll, based on poll() syscall."

Oops sorry, yes, I'm talking about select.devpoll, its structure has a "int fd_devpoll;" field:

typedef struct {
    PyObject_HEAD
    int fd_devpoll;
    int max_n_fds;
    int n_fds;
    struct pollfd *fds;
} devpollObject;
History
Date User Action Args
2013-08-21 09:25:55vstinnersetrecipients: + vstinner, gvanrossum, jcea, neologix
2013-08-21 09:25:55vstinnersetmessageid: <1377077155.16.0.350558760621.issue18794@psf.upfronthosting.co.za>
2013-08-21 09:25:55vstinnerlinkissue18794 messages
2013-08-21 09:25:54vstinnercreate