[issue8865] select.poll is not thread safe

2013-08-20 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- assignee: gregory.p.smith - serhiy.storchaka versions: -Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8865 ___

[issue8865] select.poll is not thread safe

2013-08-20 Thread Roundup Robot
Roundup Robot added the comment: New changeset 072ba5df77e4 by Serhiy Storchaka in branch '3.3': Issue #8865: Concurrent invocation of select.poll.poll() now raises a http://hg.python.org/cpython/rev/072ba5df77e4 New changeset 4543408e2ba6 by Serhiy Storchaka in branch 'default': Issue #8865:

[issue8865] select.poll is not thread safe

2013-08-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you for the report and the patch Christian. -- resolution: - fixed stage: commit review - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8865

[issue8865] select.poll is not thread safe

2013-08-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Gregory, could you commit the patch or allow me to do this? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8865 ___

[issue8865] select.poll is not thread safe

2013-08-04 Thread STINNER Victor
Changes by STINNER Victor victor.stin...@gmail.com: -- nosy: +haypo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8865 ___ ___ Python-bugs-list

[issue8865] select.poll is not thread safe

2013-04-13 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Gregory? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8865 ___ ___ Python-bugs-list mailing list

[issue8865] select.poll is not thread safe

2013-02-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Ping. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8865 ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8865] select.poll is not thread safe

2013-02-10 Thread Antoine Pitrou
Antoine Pitrou added the comment: Patches look good to me. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8865 ___ ___ Python-bugs-list mailing

[issue8865] select.poll is not thread safe

2013-01-26 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here is a test made from Charles-François's crasher. Let's go. -- Added file: http://bugs.python.org/file28855/issue8865_test.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8865

[issue8865] select.poll is not thread safe

2013-01-26 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- stage: test needed - commit review ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8865 ___ ___

[issue8865] select.poll is not thread safe

2013-01-11 Thread Charles-François Natali
Charles-François Natali added the comment: This patch should be updated to also fix epoll(). Also, is it right to raise an exception in case of concurrent invocation? Here's a simple script that crashes systematically on my Linux box. -- nosy: +neologix Added file:

[issue8865] select.poll is not thread safe

2013-01-11 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Also, is it right to raise an exception in case of concurrent invocation? It is right for poll() because it was not concurrently usable in previous versions in any case. For epoll() it is an another issue. --

[issue8865] select.poll is not thread safe

2012-12-05 Thread Andrew Svetlov
Changes by Andrew Svetlov andrew.svet...@gmail.com: -- nosy: +asvetlov ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8865 ___ ___ Python-bugs-list

[issue8865] select.poll is not thread safe

2012-12-05 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Test should check changed behavior. I.e. it should test that calling poll concurrently raises an exception. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8865

[issue8865] select.poll is not thread safe

2012-12-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: As I see, Christian's contributor agreement already confirmed. Let's go ahead. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8865 ___

[issue8865] select.poll is not thread safe

2012-12-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Christian, it would be nice if you write the tests. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8865 ___

[issue8865] select.poll is not thread safe

2012-12-04 Thread Christian Schubert
Christian Schubert added the comment: What's a proper test for this? Testing, that the (now expected) exception occurs when invoking poll concurrently? Or rather, that the race condition does not occur? Last time I checked, pypy handled the concurrent poll invocation well, so it would fail

[issue8865] select.poll is not thread safe

2012-11-13 Thread Christian Schubert
Christian Schubert added the comment: Would you please submit a PSF contributor agreement form? FYI: did that yesterday 9:43 UTC, no reaction (yet) -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8865

[issue8865] select.poll is not thread safe

2012-11-13 Thread Antoine Pitrou
Antoine Pitrou added the comment: Would you please submit a PSF contributor agreement form? FYI: did that yesterday 9:43 UTC, no reaction (yet) Don't worry, it can take some time to process. We can still apply your patch, though, since you said you sent a contributor agreement. --

[issue8865] select.poll is not thread safe

2012-11-12 Thread Christian Schubert
Christian Schubert added the comment: new proposed fix: forbid concurrent poll() invocation -- Added file: http://bugs.python.org/file27967/issue8865_v2.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8865

[issue8865] select.poll is not thread safe

2012-11-12 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: The patch LGTM. I doubt about the exception type. May be RuntimeError is more appropriate? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8865 ___

[issue8865] select.poll is not thread safe

2012-11-12 Thread Christian Schubert
Christian Schubert added the comment: I doubt about the exception type. May be RuntimeError is more appropriate? mea culpa, just copypasted without actually looking; fixed in v3 -- Added file: http://bugs.python.org/file27968/issue8865_v3.diff ___

[issue8865] select.poll is not thread safe

2012-11-11 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- nosy: +serhiy.storchaka ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8865 ___ ___ Python-bugs-list

[issue8865] select.poll is not thread safe

2012-11-11 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I was unable to apply the patch automatically, so I had to do it manually. Here is an updated patch for review. I did not consider it in detail yet, but it seems to correct these errors. -- type: behavior - crash versions: +Python 3.3, Python 3.4

[issue8865] select.poll is not thread safe

2012-11-11 Thread Gregory P. Smith
Gregory P. Smith added the comment: i'm looking at getting this in. -- assignee: - gregory.p.smith ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8865 ___

[issue8865] select.poll is not thread safe

2012-11-11 Thread Gregory P. Smith
Gregory P. Smith added the comment: Christian Schubert (apexo) - Would you please submit a PSF contributor agreement form? http://www.python.org/psf/contrib/ http://www.python.org/psf/contrib/contrib-form-python/ thanks! -- ___ Python tracker

[issue8865] select.poll is not thread safe

2012-11-11 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: In general the patch looks good to me. I only get rid of non-needed macros. -- stage: - test needed Added file: http://bugs.python.org/file27963/select_concurrent_poll.patch ___ Python tracker

[issue8865] select.poll is not thread safe

2012-11-11 Thread Gregory P. Smith
Gregory P. Smith added the comment: here's an updated patch. it strikes me that this should not be a very common problem. how many applications are going to share the same poll object _across_ multiple threads? if they do and the file descriptor they'll be spending a lot of time mallocing

[issue8865] select.poll is not thread safe

2012-11-11 Thread Gregory P. Smith
Gregory P. Smith added the comment: our patches are similar. i updated it to use long long and Py_ssize_t and Py_CLEAR and Py_RETURN_NONE in a few places and added comments. getting rid of the CLEAR_UFDS macro as you did is a good idea. -- ___

[issue8865] select.poll is not thread safe

2012-11-11 Thread Antoine Pitrou
Antoine Pitrou added the comment: it strikes me that this should not be a very common problem. how many applications are going to share the same poll object _across_ multiple threads? Indeed that doesn't sound very likely. How about raising an error on concurrent modification, instead of

[issue8865] select.poll is not thread safe

2012-11-11 Thread Christian Schubert
Christian Schubert added the comment: How about raising an error on concurrent modification, instead of trying to make it thread-safe? That's totally fine with me. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8865

[issue8865] select.poll is not thread safe

2012-11-10 Thread Gregory P. Smith
Changes by Gregory P. Smith g...@krypto.org: -- assignee: gregory.p.smith - ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8865 ___ ___

[issue8865] select.poll is not thread safe

2012-06-07 Thread Gregory P. Smith
Changes by Gregory P. Smith g...@krypto.org: -- assignee: - gregory.p.smith nosy: +gregory.p.smith ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8865 ___

[issue8865] select.poll is not thread safe

2010-06-15 Thread Christian Schubert
Christian Schubert b...@apexo.de added the comment: added a patch which fixes both issues before releasing the GIL we take a copy of the ufds pointer and its len, erasing the ufds pointer in the poll object (to make sure nobody else fiddles with it); when we're done we either but it back into

[issue8865] select.poll is not thread safe

2010-06-15 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- nosy: +exarkun ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8865 ___ ___ Python-bugs-list mailing

[issue8865] select.poll is not thread safe

2010-06-15 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: -d...@python ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8865 ___ ___ Python-bugs-list

[issue8865] select.poll is not thread safe

2010-06-01 Thread Christian Schubert
Christian Schubert b...@apexo.de added the comment: okay, I've managed to put together a script that fairly consistently reproduces the problem on my (core2 duo 2,something GHz) machine some parameters (sleep times) are randomized in each iteration, the script runs for 30 iterations, each for

[issue8865] select.poll is not thread safe

2010-06-01 Thread Christian Schubert
Christian Schubert b...@apexo.de added the comment: the other issue (poll_register freeing data structures that poll_poll currently uses) can be reproduced by the attached script (at least I can) depending on the parameters/circumstances it either segfaults or prints garbage results from

[issue8865] select.poll is not thread safe

2010-05-31 Thread Christian Schubert
New submission from Christian Schubert b...@apexo.de: invoking select.poll.poll() concurrently from multiple threads frequently yields garbage in one thread: while poll_poll in thread 1 is parsing its result, another thread 2 calling poll may overwrite revents; assuming poll_result was 1 in

[issue8865] select.poll is not thread safe

2010-05-31 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Do you have a script that reproduces it? -- assignee: d...@python - components: -Documentation nosy: +pitrou versions: +Python 2.6, Python 2.7, Python 3.1, Python 3.2 -Python 2.5 ___ Python tracker