mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
Issue #12469: partial revert of 024827a9db64, freebsd6 thread initialization
* Don't create a thread at startup anymore to initialize the pthread library: it changes the behaviour of many functions related to signal handling like sigwait() * Reenable test_sigtimedwait_poll() on FreeBSD 6
This commit is contained in:
parent
8fbfc12f5e
commit
87e78ce1c6
2 changed files with 1 additions and 7 deletions
|
@ -670,9 +670,6 @@ class PendingSignalsTests(unittest.TestCase):
|
|||
|
||||
@unittest.skipUnless(hasattr(signal, 'sigtimedwait'),
|
||||
'need signal.sigtimedwait()')
|
||||
# issue #12303: sigtimedwait() takes 30 seconds on FreeBSD 6 (kernel bug)
|
||||
@unittest.skipIf(sys.platform =='freebsd6',
|
||||
"sigtimedwait() with a null timeout doens't work on FreeBSD 6")
|
||||
def test_sigtimedwait_poll(self):
|
||||
# check that polling with sigtimedwait works
|
||||
self.wait_helper(signal.SIGALRM, '''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue